Skip to content

Commit 83f786d

Browse files
authored
Merge pull request #7 from bmish/release-it
Add release-it-lerna-changelog for automated release process
2 parents c5c66ca + 19ce600 commit 83f786d

File tree

2 files changed

+1834
-56
lines changed

2 files changed

+1834
-56
lines changed

package.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
"packages",
1111
"workspace"
1212
],
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/bmish/check-dependency-version-consistency.git"
16+
},
1317
"license": "MIT",
1418
"bin": {
1519
"check-dependency-version-consistency": "./dist/bin/check-dependency-version-consistency.js"
@@ -22,6 +26,7 @@
2226
"lint:package-json": "sort-package-json --check",
2327
"lint:types": "tsc",
2428
"prepublishOnly": "tsc",
29+
"release": "release-it",
2530
"test": "nyc mocha -r ts-node/register 'test/**/*.ts'"
2631
},
2732
"nyc": {
@@ -46,11 +51,23 @@
4651
"mocha": "^8.1.3",
4752
"npm-run-all": "^4.1.5",
4853
"nyc": "^15.1.0",
54+
"release-it": "^14.2.2",
55+
"release-it-lerna-changelog": "^3.1.0",
4956
"sort-package-json": "^1.44.0",
5057
"ts-node": "^9.1.1",
5158
"typescript": "^4.0.2"
5259
},
5360
"engines": {
5461
"node": "10.x || 12.x || >= 14"
62+
},
63+
"publishConfig": {
64+
"registry": "https://registry.npmjs.org"
65+
},
66+
"release-it": {
67+
"plugins": {
68+
"release-it-lerna-changelog": {
69+
"infile": "CHANGELOG.md"
70+
}
71+
}
5572
}
5673
}

0 commit comments

Comments
 (0)