-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(INFRA-552): publish an npm package
- Loading branch information
Showing
4 changed files
with
2,556 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
dist/ | ||
node_modules/ | ||
node_modules/ | ||
*.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module.exports = { | ||
branches: ['master'], | ||
plugins: [ | ||
['@semantic-release/commit-analyzer', { preset: 'conventionalcommits' }], | ||
['@semantic-release/npm', { pkgRoot: 'dist/' }], | ||
[ | ||
'@semantic-release/github', | ||
{ | ||
// Setting this to false disables the default behavior | ||
// of opening a GitHub issue when a release fails. | ||
// We can enable this later if we want. | ||
failComment: false, | ||
}, | ||
], | ||
], | ||
}; |
Oops, something went wrong.