Skip to content

Commit b6aa99e

Browse files
committed
fix: remove registry from publishConfig to allow dual publishing
- Remove hardcoded npm registry from package.json - Allows workflow to control registry via setup-node registry-url - Enables publishing to both npm and GitHub Packages - Registry is now set by workflow, not package.json
1 parent a2848f6 commit b6aa99e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages/cli/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@
4141
"LICENSE"
4242
],
4343
"publishConfig": {
44-
"access": "public",
45-
"registry": "https://registry.npmjs.org"
44+
"access": "public"
4645
},
4746
"scripts": {
4847
"dev": "tsx watch src/cli.ts",

packages/runner-node/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
"README.md"
3232
],
3333
"publishConfig": {
34-
"access": "public",
35-
"registry": "https://registry.npmjs.org"
34+
"access": "public"
3635
},
3736
"scripts": {
3837
"build": "tsup",

0 commit comments

Comments
 (0)