Skip to content

Commit

Permalink
Fixing release-it configuration (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
scalvert authored Jun 17, 2022
1 parent 9294c93 commit cd1b126
Show file tree
Hide file tree
Showing 3 changed files with 2,007 additions and 79 deletions.
14 changes: 2 additions & 12 deletions addon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
},
"scripts": {
"build": "rollup --config",
"prepare": "yarn build",
"prepublishOnly": "rollup --config",
"start": "rollup --config --watch",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
Expand All @@ -25,16 +26,6 @@
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"changelog": {
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal",
"generators": ":recycle: Generators"
}
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
Expand All @@ -43,8 +34,7 @@
}
},
"git": {
"tagName": "v${version}",
"changelog": "git log --pretty=format:\"* %s (%h)\" --no-merges --perl-regexp --author=\"^((?!dependabot-preview).*)$\" ${latestTag}...HEAD"
"tagName": "v${version}"
},
"github": {
"release": true,
Expand Down
26 changes: 25 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@
"test-app"
],
"scripts": {
"lint": "yarn workspaces run lint"
"lint": "yarn workspaces run lint",
"prepare": "yarn workspace ember-date-service run prepare",
"test": "yarn workspace test-app ember test"
},
"devDependencies": {
"release-it": "^15.0.0",
"release-it-lerna-changelog": "^4.0.1",
"release-it-yarn-workspaces": "^2.0.1"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
},
"release-it-yarn-workspaces": true
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
}
}
Loading

0 comments on commit cd1b126

Please sign in to comment.