0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-04 02:01:58 -05:00

Added yarn archive to produce a build tarball

fixes https://github.com/TryGhost/Ghost/issues/16835

- this reimplements a command to product a tarball with Ghost after we
  took over `yarn build` for package-specific build steps
This commit is contained in:
Daniel Lockyer 2023-06-15 15:42:39 +02:00
parent 885e5b7b9c
commit 4b6cfa8f28
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View file

@ -20,6 +20,7 @@
"contributors": "https://github.com/TryGhost/Ghost/graphs/contributors",
"license": "MIT",
"scripts": {
"archive": "npm pack",
"start": "node index",
"setup": "knex-migrator init",
"build": "yarn build:css",

View file

@ -20,6 +20,7 @@
"**/node_modules/**"
],
"scripts": {
"archive": "yarn workspace ghost run archive",
"build": "lerna run build",
"dev:debug": "DEBUG_COLORS=true DEBUG=@tryghost*,ghost:* yarn dev",
"dev:admin": "node .github/dev.js --admin",