Removed duplicate build step during tarballing

- we don't need to define this in `prepack` because Nx can be configured
  to do this for us
This commit is contained in:
Daniel Lockyer 2023-07-14 14:12:13 +02:00 committed by Daniel Lockyer
parent 0616222d2e
commit 704fc18856

View File

@ -52,7 +52,7 @@
"lint:test": "eslint -c test/.eslintrc.js --ignore-path test/.eslintignore 'test/**/*.js' --cache",
"lint:code": "yarn lint:server && yarn lint:shared && yarn lint:frontend",
"lint": "yarn lint:server && yarn lint:shared && yarn lint:frontend && yarn lint:test",
"prepack": "nx run-many -t build --projects='ghost/*' && monobundle"
"prepack": "monobundle"
},
"engines": {
"node": "^16.14.0 || ^18.12.1",
@ -265,7 +265,13 @@
"targets": {
"archive": {
"dependsOn": [
"^build:ts"
"^build:ts",
{
"projects": [
"ghost-admin"
],
"target": "build"
}
]
},
"dev": {