Skip to content

Commit

Permalink
build: build via predeploy hook instead of nx plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
raveclassic committed Dec 28, 2021
1 parent bef9614 commit b50f8c2
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"test": "nx run-many --target=test --all --parallel",
"typedoc": "typedoc && cp jekyll_config.yml docs/_config.yml",
"version": "yarn typedoc && git add docs",
"predeploy": "pnpm build",
"deploy": "nx run-many --target=deploy --all"
},
"private": true,
Expand Down
3 changes: 2 additions & 1 deletion packages/core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"deploy": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"access": "public"
"access": "public",
"noBuild": true
}
}
},
Expand Down
3 changes: 2 additions & 1 deletion packages/fp-ts/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"deploy": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"access": "public"
"access": "public",
"noBuild": true
}
}
},
Expand Down
3 changes: 2 additions & 1 deletion packages/lens/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"deploy": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"access": "public"
"access": "public",
"noBuild": true
}
}
},
Expand Down
3 changes: 2 additions & 1 deletion packages/react/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"deploy": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"access": "public"
"access": "public",
"noBuild": true
}
}
},
Expand Down
6 changes: 0 additions & 6 deletions packages/test-utils/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@
"passWithNoTests": true,
"codeCoverage": true
}
},
"deploy": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"access": "public"
}
}
},
"tags": []
Expand Down
3 changes: 2 additions & 1 deletion packages/utils/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"deploy": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"access": "public"
"access": "public",
"noBuild": true
}
}
},
Expand Down

0 comments on commit b50f8c2

Please sign in to comment.