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:
parent
036cf865d0
commit
42b6a14380
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue