Skip to content

Commit 0eec2c6

Browse files
committed
build(semantic-release): fix config
Removed accidentally added extra [].
1 parent f407a75 commit 0eec2c6

File tree

1 file changed

+44
-48
lines changed

1 file changed

+44
-48
lines changed

.releaserc

Lines changed: 44 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,14 @@
99
{
1010
"preset": "conventionalcommits",
1111
"releaseRules": [
12-
[
13-
{
14-
"type": "chore",
15-
"release": "patch"
16-
},
17-
{
18-
"type": "refactor",
19-
"release": "patch"
20-
}
21-
]
12+
{
13+
"type": "chore",
14+
"release": "patch"
15+
},
16+
{
17+
"type": "refactor",
18+
"release": "patch"
19+
}
2220
]
2321
}
2422
],
@@ -44,44 +42,42 @@
4442
"preset": "conventionalcommits",
4543
"presetConfig": {
4644
"types": [
47-
[
48-
{
49-
"type": "feat",
50-
"section": "Features"
51-
},
52-
{
53-
"type": "fix",
54-
"section": "Bug Fixes"
55-
},
56-
{
57-
"type": "perf",
58-
"section": "Performance Improvements"
59-
},
60-
{
61-
"type": "revert",
62-
"section": "Reverts"
63-
},
64-
{
65-
"type": "docs",
66-
"section": "Documentation"
67-
},
68-
{
69-
"type": "chore",
70-
"section": "Miscellaneous Chores"
71-
},
72-
{
73-
"type": "refactor",
74-
"section": "Code Refactoring"
75-
},
76-
{
77-
"type": "test",
78-
"section": "Tests"
79-
},
80-
{
81-
"type": "build",
82-
"section": "Build System"
83-
}
84-
]
45+
{
46+
"type": "feat",
47+
"section": "Features"
48+
},
49+
{
50+
"type": "fix",
51+
"section": "Bug Fixes"
52+
},
53+
{
54+
"type": "perf",
55+
"section": "Performance Improvements"
56+
},
57+
{
58+
"type": "revert",
59+
"section": "Reverts"
60+
},
61+
{
62+
"type": "docs",
63+
"section": "Documentation"
64+
},
65+
{
66+
"type": "chore",
67+
"section": "Miscellaneous Chores"
68+
},
69+
{
70+
"type": "refactor",
71+
"section": "Code Refactoring"
72+
},
73+
{
74+
"type": "test",
75+
"section": "Tests"
76+
},
77+
{
78+
"type": "build",
79+
"section": "Build System"
80+
}
8581
]
8682
}
8783
}

0 commit comments

Comments
 (0)