Skip to content

Commit

Permalink
chore: typo publish -> release
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Nov 7, 2021
1 parent 4de6aa5 commit 063e66e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -19,4 +19,4 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm i -g yarn
- run: yarn
- run: npm run prepublishOnly
- run: npm run prerelease
2 changes: 1 addition & 1 deletion extensions/vscode-typescript-vue-plugin/package.json
Expand Up @@ -25,7 +25,7 @@
"scripts": {
"vscode:prepublish": "cd ../.. && npm run build",
"pack": "vsce package",
"publish": "vsce publish --yarn"
"release": "vsce publish --yarn"
},
"workspaces": [
"../../packages/code-gen",
Expand Down
2 changes: 1 addition & 1 deletion extensions/vscode-vue-language-features/package.json
Expand Up @@ -482,7 +482,7 @@
"scripts": {
"vscode:prepublish": "cd ../.. && npm run build",
"pack": "vsce package",
"publish": "vsce publish --yarn"
"release": "vsce publish --yarn"
},
"workspaces": [
"../../packages/*"
Expand Down
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -6,11 +6,11 @@
"install:typescript-vue-plugin": "cd extensions/vscode-typescript-vue-plugin && yarn",
"build": "tsc -b tsconfig.build.json",
"watch": "tsc -b tsconfig.build.json -w",
"prepublishOnly": "npm run build && npm run test",
"publish": "npm run publish:packages && npm run publish:vue-language-features && npm run publish:typescript-vue-plugin",
"publish:packages": "lerna publish --exact --force-publish --yes",
"publish:vue-language-features": "cd extensions/vscode-vue-language-features && npm run publish",
"publish:typescript-vue-plugin": "cd extensions/vscode-typescript-vue-plugin && npm run publish",
"prerelease": "npm run build && npm run test",
"release": "npm run release:packages && npm run release:vue-language-features && npm run release:typescript-vue-plugin",
"release:packages": "lerna publish --exact --force-publish --yes --no-push",
"release:vue-language-features": "cd extensions/vscode-vue-language-features && npm run release",
"release:typescript-vue-plugin": "cd extensions/vscode-typescript-vue-plugin && npm run release",
"pretest": "cd packages/vscode-vue-languageservice/testCases && yarn",
"test": "jest"
},
Expand Down

0 comments on commit 063e66e

Please sign in to comment.