Skip to content

Commit 0892245

Browse files
committed
fix: add required options to build target
1 parent bd4fb1f commit 0892245

File tree

17 files changed

+116
-23
lines changed

17 files changed

+116
-23
lines changed

package-lock.json

Lines changed: 49 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"@nx/react": "19.8.13",
6464
"@nx/vite": "19.8.13",
6565
"@nx/workspace": "19.8.13",
66-
"@push-based/nx-verdaccio": "^0.0.0",
66+
"@push-based/nx-verdaccio": "^0.0.4",
6767
"@swc-node/register": "1.9.2",
6868
"@swc/cli": "0.3.14",
6969
"@swc/core": "1.5.7",

packages/ci/project.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
"sourceRoot": "packages/ci/src",
55
"projectType": "library",
66
"targets": {
7-
"build": {},
7+
"build": {
8+
"options": {
9+
"outputPath": "{projectRoot}/dist"
10+
}
11+
},
812
"lint": {},
913
"unit-test": {},
1014
"int-test": {}

packages/cli/project.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
"sourceRoot": "packages/cli/src",
55
"projectType": "library",
66
"targets": {
7-
"build": {},
7+
"build": {
8+
"options": {
9+
"outputPath": "{projectRoot}/dist"
10+
}
11+
},
812
"lint": {},
913
"unit-test": {},
1014
"int-test": {},

0 commit comments

Comments
 (0)