File tree 3 files changed +25
-7
lines changed
3 files changed +25
-7
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,9 +11,24 @@ export default {
11
11
plugins : [
12
12
"@semantic-release/commit-analyzer" ,
13
13
"@semantic-release/release-notes-generator" ,
14
- "@semantic-release/npm" ,
15
- [ "@semantic-release/git" , {
16
- "message" : "chore(release): ${nextRelease.version} [skip ci]"
17
- } ]
18
- ]
14
+ [
15
+ "@semantic-release/changelog" ,
16
+ {
17
+ changelogFile : "CHANGELOG.md" ,
18
+ } ,
19
+ ] ,
20
+ [
21
+ "@semantic-release/npm" ,
22
+ {
23
+ pkgRoot : "dist" ,
24
+ } ,
25
+ ] ,
26
+ [
27
+ "@semantic-release/git" ,
28
+ {
29
+ assets : [ "package.json" , "CHANGELOG.md" ] ,
30
+ message : "chore(release): ${nextRelease.version} [skip ci]" ,
31
+ } ,
32
+ ] ,
33
+ ] ,
19
34
} ;
Original file line number Diff line number Diff line change 73
73
"commitizen" : {
74
74
"path" : " cz-conventional-changelog"
75
75
}
76
+ },
77
+ "publishConfig" : {
78
+ "registry" : " https://registry.npmjs.org/" ,
79
+ "tag" : " latest" ,
80
+ "access" : " public"
76
81
}
77
82
}
You can’t perform that action at this time.
0 commit comments