Browse Source

fix(test-server): test-server can not lanuch (#3554)

pull/3560/head
xachary 2 years ago
committed by GitHub
parent
commit
e6797043c5
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      apps/test-server/package.json

7
apps/test-server/package.json

@ -2,13 +2,12 @@
"name": "server",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"compile": "rimraf ./dist && tsup ./index.ts --dts --format cjs,esm ",
"prod": "npx pm2 start ecosystem.config.js --env production",
"restart": "pm2 restart ecosystem.config.js --env production",
"prod": "npx pm2 start ecosystem.config.cjs --env production",
"restart": "pm2 restart ecosystem.config.cjs --env production",
"start": "nodemon",
"stop": "npx pm2 stop ecosystem.config.js"
"stop": "npx pm2 stop ecosystem.config.cjs"
},
"dependencies": {
"fs-extra": "^11.1.1",

Loading…
Cancel
Save