Skip to content

Commit

Permalink
fix(server): fix npm start command
Browse files Browse the repository at this point in the history
  • Loading branch information
xutyxd committed Nov 18, 2024
1 parent eea8a41 commit 4eb2c16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- 'src/openapi/**'
- 'src/server/**'
- 'tests/**'
- 'package.json'

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"package:build:mjs": "rm -fr package/mjs/* && tsc -p ./configurations/package/tsconfig-mjs.json && sh ./scripts/package/mjs-formatter.sh",
"package:build": "npm run package:build:cjs && npm run package:build:mjs && ./scripts/package/fixup.sh",
"start:local": "npm run server:build && node --env-file=.env ./server/cjs/index.js",
"start": "./server/cjs/index.js",
"start": "node ./server/cjs/index.js",
"clean": "npm prune --production",
"test:ts:server": "tsc --noEmit -p ./configurations/server/tsconfig-cjs.json",
"test:ts:package": "tsc --noEmit -p ./configurations/package/tsconfig-cjs.json",
Expand Down

0 comments on commit 4eb2c16

Please sign in to comment.