This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add semantic release config (#155)
Generate changelogs again
- Loading branch information
1 parent
32f4278
commit def9ad7
Showing
1 changed file
with
64 additions
and
23 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 |
---|---|---|
|
@@ -60,27 +60,68 @@ | |
"err-code": "^3.0.1", | ||
"stream-to-it": "^0.2.2" | ||
}, | ||
"contributors": [ | ||
"David Dias <[email protected]>", | ||
"Jacob Heun <[email protected]>", | ||
"Vasco Santos <[email protected]>", | ||
"Stephen Whitmore <[email protected]>", | ||
"Friedel Ziegelmayer <[email protected]>", | ||
"Alex Potsides <[email protected]>", | ||
"Richard Littauer <[email protected]>", | ||
"Tom White <[email protected]>", | ||
"Alan Shaw <[email protected]>", | ||
"Nazar Hussain <[email protected]>", | ||
"Pedro Teixeira <[email protected]>", | ||
"Prashanth Chandra <[email protected]>", | ||
"Ryan Mehta <[email protected]>", | ||
"Linus Unnebäck <[email protected]>", | ||
"Cayman <[email protected]>", | ||
"Diogo Silva <[email protected]>", | ||
"Dmitriy Ryajov <[email protected]>", | ||
"Drew Stone <[email protected]>", | ||
"Evan Schwartz <[email protected]>", | ||
"João Antunes <[email protected]>", | ||
"Mikeal Rogers <[email protected]>" | ||
] | ||
"release": { | ||
"branches": [ | ||
"master" | ||
], | ||
"plugins": [ | ||
[ | ||
"@semantic-release/commit-analyzer", { | ||
"preset": "conventionalcommits", | ||
"releaseRules": [{ | ||
"breaking": true, | ||
"release": "major" | ||
}, { | ||
"revert": true, | ||
"release": "patch" | ||
}, { | ||
"type": "feat", | ||
"release": "minor" | ||
}, { | ||
"type": "fix", | ||
"release": "patch" | ||
}, { | ||
"type": "chore", | ||
"release": "patch" | ||
}, { | ||
"type": "docs", | ||
"release": "patch" | ||
}, { | ||
"type": "test", | ||
"release": "patch" | ||
}, { | ||
"scope": "no-release", | ||
"release": false | ||
}] | ||
} | ||
], | ||
[ | ||
"@semantic-release/release-notes-generator", { | ||
"preset": "conventionalcommits", | ||
"presetConfig": { | ||
"types": [{ | ||
"type": "feat", | ||
"section": "Features" | ||
}, { | ||
"type": "fix", | ||
"section": "Bug Fixes" | ||
}, { | ||
"type": "chore", | ||
"section": "Trivial Changes" | ||
}, { | ||
"type": "docs", | ||
"section": "Trivial Changes" | ||
}, { | ||
"type": "test", | ||
"section": "Tests" | ||
}] | ||
} | ||
} | ||
], | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
"@semantic-release/github", | ||
"@semantic-release/git" | ||
] | ||
} | ||
} |