Skip to content

Commit 65e2368

Browse files
committed
Introduce semantic-release
BREAKING CHANGE: Every call to marked is isolated now. This makes sure that options from the first call won't influence options from the second call. If you've configured the markdown-loader with two different options, you might observe different behavior now. We also removed Node v8 and Node v10 support and support for older webpack versions. Webpack 5 is required now.
1 parent de0be90 commit 65e2368

File tree

3 files changed

+15803
-6598
lines changed

3 files changed

+15803
-6598
lines changed

.releaserc.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"branches": ["main", { "name": "beta", "prerelease": true }],
3+
"plugins": [
4+
"@semantic-release/commit-analyzer",
5+
"@semantic-release/release-notes-generator",
6+
"@semantic-release/changelog",
7+
[
8+
"@semantic-release/git",
9+
{
10+
"assets": ["CHANGELOG.md"]
11+
}
12+
],
13+
"@semantic-release/github",
14+
"@semantic-release/npm"
15+
]
16+
}

0 commit comments

Comments
 (0)