Skip to content

Commit 836cef2

Browse files
authored
Merge pull request #310 from Turbo87/backport-release-it
2 parents b181985 + b788a70 commit 836cef2

File tree

3 files changed

+2392
-18
lines changed

3 files changed

+2392
-18
lines changed

.github/workflows/ci-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
node-version: 6.x
2323

24-
- run: yarn install --frozen-lockfile
24+
- run: yarn install --frozen-lockfile --ignore-engines
2525
- run: yarn lint:hbs
2626
- run: yarn lint:js
2727
- run: yarn test

package.json

+21-1
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,32 @@
5050
"eslint-plugin-node": "^8.0.1",
5151
"loader.js": "^4.7.0",
5252
"qunit-dom": "^0.8.0",
53+
"release-it": "^14.11.6",
54+
"release-it-lerna-changelog": "^3.1.0",
5355
"typescript": "^3.2.4"
5456
},
5557
"engines": {
5658
"node": "6.* || 8.* || >= 10.*"
5759
},
5860
"ember-addon": {
5961
"configPath": "tests/dummy/config"
62+
},
63+
"release-it": {
64+
"plugins": {
65+
"release-it-lerna-changelog": {
66+
"infile": "CHANGELOG.md",
67+
"launchEditor": true
68+
}
69+
},
70+
"git": {
71+
"tagName": "v${version}"
72+
},
73+
"github": {
74+
"release": true,
75+
"tokenRef": "GITHUB_AUTH"
76+
},
77+
"npm": {
78+
"publish": false
79+
}
6080
}
61-
}
81+
}

0 commit comments

Comments
 (0)