Skip to content

Commit a303773

Browse files
committed
Fix workspace deps to resolve locally, not from npm registry
1 parent 3867522 commit a303773

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

package-lock.json

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

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"start": "node dist/index.js"
1919
},
2020
"dependencies": {
21-
"@clux-cli/core": "0.2.0",
22-
"@clux-cli/web": "0.2.0",
21+
"@clux-cli/core": "*",
22+
"@clux-cli/web": "*",
2323
"commander": "^13.0.0",
2424
"chalk": "^4.1.2",
2525
"cli-table3": "^0.6.5",

packages/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"watch": "tsc --watch"
1717
},
1818
"dependencies": {
19-
"@clux-cli/core": "0.1.0",
19+
"@clux-cli/core": "*",
2020
"express": "^4.21.0",
2121
"ws": "^8.18.0"
2222
},

0 commit comments

Comments
 (0)