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

Fixed Portal yarn ship command

- not sure why there was `yarn publish` here because it asks you to
  choose the package version again
This commit is contained in:
Daniel Lockyer 2023-04-06 20:18:53 +02:00
parent aa404ecad5
commit 434f25502e
No known key found for this signature in database

View file

@ -27,7 +27,7 @@
"lint": "eslint src --ext .js --cache",
"preship": "yarn lint",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then yarn version; fi",
"postship": "git push ${GHOST_UPSTREAM:-origin} --follow-tags && yarn publish . --tag $npm_package_version",
"postship": "git push ${GHOST_UPSTREAM:-origin} --follow-tags && npm publish",
"prepublishOnly": "yarn build"
},
"eslintConfig": {