Skip to content

Commit 2a19494

Browse files
authored
chore: finalize config (#229)
This finalizes the config for `semantic-release` BREAKING CHANGES: we're using semantic-release, just wanna bump the major version
1 parent 729d05f commit 2a19494

File tree

2 files changed

+55
-42
lines changed

2 files changed

+55
-42
lines changed

.releaserc.json

+54-41
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,59 @@
11
{
22
"branches": ["dev"],
33
"plugins": [
4-
"@semantic-release/commit-analyzer",
5-
{
6-
"releaseRules": [
7-
{
8-
"type": "feat",
9-
"release": "minor"
10-
},
11-
{
12-
"type": "fix",
13-
"release": "patch"
14-
},
15-
{
16-
"type": "build",
17-
"release": "patch"
18-
},
19-
{
20-
"type": "ci",
21-
"release": "patch"
22-
},
23-
{
24-
"type": "chore",
25-
"release": "patch"
26-
},
27-
{
28-
"type": "docs",
29-
"release": "patch"
30-
},
31-
{
32-
"type": "refactor",
33-
"release": "patch"
34-
},
35-
{
36-
"type": "style",
37-
"release": "patch"
38-
},
39-
{
40-
"type": "test",
41-
"release": "patch"
42-
}
43-
]
44-
}
4+
[
5+
"@semantic-release/commit-analyzer",
6+
{
7+
"releaseRules": [
8+
{
9+
"type": "feat",
10+
"release": "minor"
11+
},
12+
{
13+
"type": "fix",
14+
"release": "patch"
15+
},
16+
{
17+
"type": "build",
18+
"release": "patch"
19+
},
20+
{
21+
"type": "ci",
22+
"release": "patch"
23+
},
24+
{
25+
"type": "chore",
26+
"release": "patch"
27+
},
28+
{
29+
"type": "docs",
30+
"release": "patch"
31+
},
32+
{
33+
"type": "refactor",
34+
"release": "patch"
35+
},
36+
{
37+
"type": "style",
38+
"release": "patch"
39+
},
40+
{
41+
"type": "test",
42+
"release": "patch"
43+
}
44+
]
45+
}
46+
],
47+
"@semantic-release/release-notes-generator",
48+
"@semantic-release/changelog",
49+
"@semantic-release/npm",
50+
[
51+
"@semantic-release/git",
52+
{
53+
"assets": ["package.json", "package-lock.json", "CHANGELOG.md"],
54+
"message": "release(version): Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
55+
}
56+
],
57+
"@semantic-release/github"
4558
]
4659
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"homepage": "http://logicalclocks.github.io/quartz",
33
"name": "@logicalclocks/quartz",
4-
"version": "1.3.2",
4+
"version": "1.4.1",
55
"description": "Logical Clocks Design System Library",
66
"author": "logicalclocks",
77
"license": "MIT",

0 commit comments

Comments
 (0)