Update package.json so start no longer runs build
Some checks failed
Publish image / deploy (push) Has been cancelled

This commit is contained in:
2026-09-02 20:40:40 +00:00
parent 98eb1083eb
commit e98ef96b2e

View File

@@ -7,7 +7,7 @@
"build:dev": "npm install --include=dev && npm run generate && tsc --project tsconfig.build.json", "build:dev": "npm install --include=dev && npm run generate && tsc --project tsconfig.build.json",
"build": "npm install --include=dev && npm run generate && tsc --project tsconfig.build.json && npm prune --omit=dev", "build": "npm install --include=dev && npm run generate && tsc --project tsconfig.build.json && npm prune --omit=dev",
"start:dev": "npm run build:dev && node ./dist/index.js", "start:dev": "npm run build:dev && node ./dist/index.js",
"start": "npm run build && node ./dist/index.js", "start": "node ./dist/index.js",
"generate": "graphql-codegen --config codegen.ts", "generate": "graphql-codegen --config codegen.ts",
"test": "npm run build:dev && jest --runInBand" "test": "npm run build:dev && jest --runInBand"
}, },