Skip to content

Commit 5b30625

Browse files
chore: improvement for publish (#1880)
1 parent 8c9283c commit 5b30625

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# IDE folders
22
.idea
33
.vscode
4+
*.iml
45

56
# IDE files
67
*.code-workspace

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,20 @@
2828
"prebuild": "yarn clean",
2929
"build": "tsc --build",
3030
"watch": "tsc --build --watch",
31-
"prepsuite": "node scripts/prepareSuite.js",
3231
"commit": "git-cz",
33-
"changelog": "lerna-changelog",
3432
"lint:prettier": "prettier --list-different . \"!**/*.{js,ts}\" ",
3533
"lint:eslint": "eslint --cache --ext .js --ext .ts .",
3634
"lint": "yarn lint:eslint && yarn lint:prettier",
3735
"fix": "yarn lint:eslint --fix && yarn lint:prettier --write",
36+
"prepsuite": "node scripts/prepareSuite.js",
3837
"pretest": "yarn build && yarn lint && yarn prepsuite",
3938
"test": "jest --reporters=default --reporters=jest-junit",
4039
"test:cli": "jest test/ --reporters=default --reporters=jest-junit --forceExit",
4140
"test:packages": "jest packages/ --reporters=default --reporters=jest-junit --forceExit",
4241
"test:ci": "yarn test:cli && yarn test:packages",
4342
"test:watch": "jest test/ packages/ --watch",
4443
"test:smoke": "smoketests/smoketests.sh",
45-
"publish:monorepo": "yarn format && yarn test && yarn build && lerna publish -m \"chore: monorepo version update\""
44+
"publish:monorepo": "yarn build && yarn lerna-changelog && lerna publish -m \"chore: monorepo version update\" --canary --preid rc --dist-tag next"
4645
},
4746
"standard-version": {
4847
"types": [

0 commit comments

Comments
 (0)