mirror of
https://github.com/spacebarchat/server.git
synced 2026-08-23 03:09:52 +00:00
10 lines
368 B
JavaScript
10 lines
368 B
JavaScript
export default {
|
|
"*.{j,t}s": [() => "npm run build:src:tsgo", "eslint --concurrency 4" /* sweet spot it seems */, "prettier --write"],
|
|
"src/schemas/{*,**/*}.ts": [
|
|
() => "npm run build:src:tsgo",
|
|
() => "node scripts/schema.js",
|
|
() => "node scripts/openapi.js",
|
|
() => "git add assets/schemas.json assets/openapi.json",
|
|
],
|
|
};
|