🌐 AI搜索 & 代理 主页
Skip to content

Commit d0744b5

Browse files
committed
chore: move standard-version configuration to .versionrc and skip commit and tag creation
1 parent cc86bf9 commit d0744b5

File tree

2 files changed

+43
-39
lines changed

2 files changed

+43
-39
lines changed

.versionrc

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"scripts": {
3+
"postchangelog": "./node_modules/.bin/prettier --write CHANGELOG.md"
4+
},
5+
"skip": {
6+
"commit": true,
7+
"tag": true
8+
},
9+
"types": [
10+
{
11+
"type": "fix",
12+
"section": "Bug Fixes"
13+
},
14+
{
15+
"type": "feat",
16+
"section": "Features"
17+
},
18+
{
19+
"type": "perf",
20+
"section": "Performance"
21+
},
22+
{
23+
"type": "docs",
24+
"hidden": true
25+
},
26+
{
27+
"type": "style",
28+
"hidden": true
29+
},
30+
{
31+
"type": "refactor",
32+
"hidden": true
33+
},
34+
{
35+
"type": "chore",
36+
"hidden": true
37+
},
38+
{
39+
"type": "test",
40+
"hidden": true
41+
}
42+
]
43+
}

package.json

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -166,45 +166,6 @@
166166
"vue-server-renderer": "^2.6.12",
167167
"vue-template-compiler": "^2.6.12"
168168
},
169-
"standard-version": {
170-
"scripts": {
171-
"postchangelog": "./node_modules/.bin/prettier --write CHANGELOG.md"
172-
},
173-
"types": [
174-
{
175-
"type": "fix",
176-
"section": "Bug Fixes"
177-
},
178-
{
179-
"type": "feat",
180-
"section": "Features"
181-
},
182-
{
183-
"type": "perf",
184-
"section": "Performance"
185-
},
186-
{
187-
"type": "docs",
188-
"hidden": true
189-
},
190-
{
191-
"type": "style",
192-
"hidden": true
193-
},
194-
{
195-
"type": "refactor",
196-
"hidden": true
197-
},
198-
{
199-
"type": "chore",
200-
"hidden": true
201-
},
202-
{
203-
"type": "test",
204-
"hidden": true
205-
}
206-
]
207-
},
208169
"keywords": [
209170
"Bootstrap",
210171
"Bootstrap v4",

0 commit comments

Comments
 (0)