Skip to content

Commit

Permalink
update environment
Browse files Browse the repository at this point in the history
  • Loading branch information
stkevintan committed Jan 21, 2024
1 parent 96fea48 commit 2cd3ba9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
exit 0
}
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
echo "//registry.npmjs.org/:_authToken=$env:NPM_TOKEN" >> ~/.npmrc
if ($commit -match "core@[0-9]+\.[0-9]+\.[0-9]+") {
pnpm nx run core:publish --ver $($Matches[0])
Expand Down
2 changes: 1 addition & 1 deletion packages/ws/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"ws": "^8.16.0"
},
"peerDependencies": {
"@wcferry/core": "*"
"@wcferry/core": "workspace:^*"
},
"bin": {
"wcfwebsocket": "./src/cmd.js"
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/scripts/publish.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ if (version) {

// Execute "npm publish" to publish
const tagArgs = tag ? `--tag ${tag}` : '';
execSync(`npm publish --access public ${tagArgs}`);
execSync(`pnpm publish --access public ${tagArgs}`);

0 comments on commit 2cd3ba9

Please sign in to comment.