0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Fixed server not picking up package.json version

- removing the hardcoded JS file makes it run `yarn start`, which puts
  the CWD for the process in the correct place so it picks up the
  `package.json`
This commit is contained in:
Daniel Lockyer 2022-08-05 16:13:38 +02:00
parent 036cf865d0
commit 42b6a14380
No known key found for this signature in database
GPG key ID: D21186F0B47295AD

View file

@ -21,7 +21,7 @@
"scripts": {
"dev:debug": "DEBUG=@tryghost*,ghost:* yarn dev",
"dev:admin": "yarn workspace ghost run dev:admin",
"dev:ghost": "nodemon -q -i ghost/admin -i ghost/core/content -i ghost/core/core/built ghost/core/index.js",
"dev:ghost": "nodemon -q -i ghost/admin -i ghost/core/content -i ghost/core/core/built",
"dev": "concurrently -c \"blue,green\" --kill-others -n ghost,admin \"yarn dev:ghost\" \"yarn dev:admin\"",
"fix": "yarn cache clean && rm -rf node_modules && yarn",
"knex-migrator": "yarn workspace ghost run knex-migrator",