Skip to content

Commit

Permalink
build: upgrade pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
raveclassic committed Mar 18, 2024
1 parent 79d3420 commit 9d46944
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"preversion": "pnpm i --frozen-lockfile",
"version": "pnpm i && git add pnpm-lock.yaml",
"postversion": "git push",
"predeploy": "npm run build",
"deploy": "nx run-many --target=deploy --all"
},
"devDependencies": {
Expand Down
5 changes: 4 additions & 1 deletion packages/core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "core",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/core/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/rollup:rollup",
Expand Down Expand Up @@ -49,9 +50,11 @@
"deploy": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"distFolderPath": "dist/packages/core",
"access": "public",
"noBuild": true
}
},
"dependsOn": ["build"]
}
},
"tags": []
Expand Down
5 changes: 4 additions & 1 deletion packages/react/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "react",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/react/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
Expand All @@ -19,9 +20,11 @@
"deploy": {
"executor": "ngx-deploy-npm:deploy",
"options": {
"distFolderPath": "dist/packages/react",
"access": "public",
"noBuild": true
}
},
"dependsOn": ["build"]
},
"build": {
"executor": "@nx/rollup:rollup",
Expand Down

0 comments on commit 9d46944

Please sign in to comment.