File tree Expand file tree Collapse file tree 3 files changed +9
-16
lines changed Expand file tree Collapse file tree 3 files changed +9
-16
lines changed Original file line number Diff line number Diff line change 1
- ## [ 2.1.5] ( https://github.com/RennCheung/codemirror-editor-vue3/compare/v2.1.4...v2.1.5 ) (2022-06-02)
2
-
1
+ ## [ 2.1.6] ( https://github.com/RennCheung/codemirror-editor-vue3/compare/v2.1.4...v2.1.5 ) (2022-06-02)
3
2
4
3
### Bug Fixes
5
4
6
- * ** type:** change codemirror event type([ #19 ] ( https://github.com/RennCheung/codemirror-editor-vue3/issues/19 ) ) ([ f29a9f5] ( https://github.com/RennCheung/codemirror-editor-vue3/commit/f29a9f5e9e7e06f5fb9d8fc95c17d4b46329621d ) )
7
-
8
-
5
+ - ** type:** change codemirror event type([ #19 ] ( https://github.com/RennCheung/codemirror-editor-vue3/issues/19 ) ) ([ f29a9f5] ( https://github.com/RennCheung/codemirror-editor-vue3/commit/f29a9f5e9e7e06f5fb9d8fc95c17d4b46329621d ) )
9
6
10
7
## [ 2.1.4] ( https://github.com/RennCheung/codemirror-editor-vue3/compare/v2.1.3...v2.1.4 ) (2022-05-29)
11
8
12
-
13
9
### Bug Fixes
14
10
15
- * 取出 emit 出现警告 ([ 882d120] ( https://github.com/RennCheung/codemirror-editor-vue3/commit/882d1207f698d94f3036f8a9fd156392d686f1ff ) )
16
-
11
+ - 取出 emit 出现警告 ([ 882d120] ( https://github.com/RennCheung/codemirror-editor-vue3/commit/882d1207f698d94f3036f8a9fd156392d686f1ff ) )
17
12
18
13
### Features
19
14
20
- * Set the default height to 200 ([ 1faa2f9] ( https://github.com/RennCheung/codemirror-editor-vue3/commit/1faa2f9f533628a44c228c1830698cdea4f71c1a ) )
21
-
22
-
15
+ - Set the default height to 200 ([ 1faa2f9] ( https://github.com/RennCheung/codemirror-editor-vue3/commit/1faa2f9f533628a44c228c1830698cdea4f71c1a ) )
23
16
24
17
## 2.1.3
25
18
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codemirror-editor-vue3" ,
3
3
"description" : " CodeMirror component for Vue3" ,
4
- "version" : " 2.1.5 " ,
4
+ "version" : " 2.1.6 " ,
5
5
"license" : " MIT" ,
6
6
"files" : [
7
7
" dist/codemirror-editor-vue3.es.js" ,
52
52
"dev" : " vite" ,
53
53
"build" : " vite build" ,
54
54
"build:types" : " tsc --emitDeclarationOnly vite build" ,
55
- "publish" : " vite build && git push && git push --tags && npm publish && npm run deploy-docs" ,
55
+ "publish-pkg " : " vite build && git push && git push --tags && npm publish && npm run deploy-docs" ,
56
56
"publish-beta" : " vite build && npm publish --tag=beta" ,
57
57
"docs-dev" : " vitepress dev docs --open" ,
58
58
"docs-build" : " vitepress build docs" ,
Original file line number Diff line number Diff line change @@ -109,14 +109,14 @@ async function main() {
109
109
// 推送当前分支代码
110
110
step ( `\n[Branch ${ getCurrentBranch ( ) } ] Pushing to GitLab...` ) ;
111
111
await runIfNotDry ( "git" , [ "tag" , `v${ targetVersion } ` ] ) ;
112
- // await runIfNotDry("git", ["push", "origin", `refs/tags/v${targetVersion}`]);
113
- // await runIfNotDry("git", ["push"]);
112
+ await runIfNotDry ( "git" , [ "push" , "origin" , `refs/tags/v${ targetVersion } ` ] ) ;
113
+ await runIfNotDry ( "git" , [ "push" ] ) ;
114
114
} ;
115
115
116
116
await syncPushCode ( ) ;
117
117
118
118
step ( "publish all packages..." ) ;
119
- await run ( "pnpm" , [ "run" , "publish" ] ) ;
119
+ await run ( "pnpm" , [ "run" , "publish-pkg " ] ) ;
120
120
121
121
if ( isDryRun ) {
122
122
console . log ( "\nDry run finished - run git diff to see package changes." ) ;
You can’t perform that action at this time.
0 commit comments