Skip to content

Commit 0c6d683

Browse files
committed
chore: update release script names
1 parent 131201d commit 0c6d683

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
6060
# To help debug when lerna detects changes to the working tree and fails the publish
6161
- run: git status
62-
- run: yarn run lerna:publish
62+
- run: yarn run release:publish --no-verify-access
6363

6464
prepare-vsix:
6565
docker:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ for each package and automatically generate the changelog by adhering to [Conven
112112
Performing a release requires push permissions to the repository.
113113

114114
- Ensure you are on `master` branch and synced with origin.
115-
- `yarn run lerna:version`
115+
- `yarn run release:version`
116116
- Follow the lerna CLI instructions.
117117
- Track the `RELEASE` tag build on circle-ci.
118118
- https://circleci.com/gh/SAP/xml-tools.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
]
1212
},
1313
"scripts": {
14-
"lerna:version": "lerna version && yarn run cirlce:release",
15-
"cirlce:release": "node ./scripts/trigger-release",
16-
"lerna:publish": "lerna publish from-git --yes",
14+
"release:version": "lerna version && yarn run release:trigger",
15+
"release:trigger": "node ./scripts/trigger-release",
16+
"release:publish": "lerna publish from-git --yes",
1717
"ci": "npm-run-all format:validate lint:validate ci:subpackages coverage:merge legal:*",
1818
"format:fix": "prettier --write --ignore-path .gitignore \"**/*.@(ts|js|json|md)\"",
1919
"format:validate": "prettier --check --ignore-path .gitignore \"**/*.@(ts|js|json|md)\"",

0 commit comments

Comments
 (0)