File tree Expand file tree Collapse file tree 5 files changed +47
-5
lines changed Expand file tree Collapse file tree 5 files changed +47
-5
lines changed Original file line number Diff line number Diff line change 11types :
22 feat : ' enhancement'
3- fix : ' bug'
3+ fix :
4+ hack : ' hack'
5+ default : ' bug'
6+ hack : ' hack'
47 docs : ' documentation'
58 refactor : ' refactor'
9+ style : ' style'
610 test : ' test'
711 perf : ' performance'
812 chore :
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ module.exports = {
1313 changelogFilename : 'CHANGELOG.md' ,
1414 template : {
1515 issue : '- {{name}} [{{text}}]({{url}})' ,
16- group : " \n### {{heading}}\n"
16+ group : ' \n### {{heading}}\n'
1717 } ,
1818 // https://github.com/nuxt/nuxt.js/releases
1919 // https://gitmoji.carloscuesta.me
@@ -25,6 +25,8 @@ module.exports = {
2525 '♻️ Tests:' : [ 'test' ] ,
2626 '🚀 Performance:' : [ 'performance' ] ,
2727 '⚓ Dependency upgrades:' : [ 'dependencies' ] ,
28- '🏡 Chore:' : [ 'chore' ]
28+ '🏡 Chore:' : [ 'chore' ] ,
29+ '💄 Style:' : [ 'style' ] ,
30+ '🎩 Hack' : [ 'hack' ]
2931 }
3032}
Original file line number Diff line number Diff line change 88
99🔨 组件研发利器,快速开发Vue单文件组件(SFC),内置最佳实践,集成自动化github workflow,随时准备发布npm。
1010
11+ ## Table Of Contents
12+
13+ - [ Links] ( #links )
14+ - [ 使用教程] ( #使用教程 )
15+ - [ 快速开始] ( #快速开始 )
16+ - [ 参数选项] ( #参数选项 )
17+ - [ 示例文档] ( #示例文档 )
18+ - [ API文档] ( #api文档 )
19+ - [ props] ( #props )
20+ - [ slot] ( #slot )
21+ - [ event] ( #event )
22+ - [ methods] ( #methods )
23+ - [ 引入第三方库] ( #引入第三方库 )
24+ - [ 环境变量] ( #环境变量 )
25+ - [ prettier and husky] ( #prettier-and-husky )
26+ - [ 注意] ( #注意 )
27+ - [ 环境需求] ( #环境需求 )
28+
1129## Links
1230
1331- [ 知乎文章] ( https://zhuanlan.zhihu.com/p/72590127 )
Original file line number Diff line number Diff line change @@ -10,6 +10,25 @@ vue-sfc-cli is a powerful tool for developing vue single-file component.
1010
1111It makes writing docs and demo easily, integrated with an automated github workflow, and is always ready to publish to npm with best practices.
1212
13+ ## Table Of Contents
14+
15+ - [ Links] ( #links )
16+ - [ Tutorial] ( #tutorial )
17+ - [ Quick Start] ( #quick-start )
18+ - [ Options] ( #options )
19+ - [ Writing Example] ( #writing-example )
20+ - [ API Documentation] ( #api-documentation )
21+ - [ Props] ( #props )
22+ - [ Slot] ( #slot )
23+ - [ Event] ( #event )
24+ - [ Methods] ( #methods )
25+ - [ Working with third-party library] ( #working-with-third-party-library )
26+ - [ Environment variable] ( #environment-variable )
27+ - [ Prettier and husky] ( #prettier-and-husky )
28+ - [ Notice] ( #notice )
29+ - [ requirement] ( #requirement )
30+ - [ Contributors] ( #contributors )
31+
1332## Links
1433
1534- [ medium article] ( https://medium.com/deepexi/reveal-the-secret-of-vue-sfc-cli-69f0f21dbad3 )
@@ -250,4 +269,4 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
250269
251270<!-- ALL-CONTRIBUTORS-LIST:END -->
252271
253- This project follows the [ all-contributors] ( https://github.com/all-contributors/all-contributors ) specification. Contributions of any kind welcome!
272+ This project follows the [ all-contributors] ( https://github.com/all-contributors/all-contributors ) specification. Contributions of any kind welcome!
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ resp_tmp_file=resp.tmp
1010
1111curl -H " Authorization: token $GITHUB_TOKEN " $url > $resp_tmp_file
1212
13-
1413html_url=$( sed -n 5p $resp_tmp_file | sed ' s/\"html_url\"://g' | awk -F ' "' ' {print $2}' )
1514body=$( grep body < $resp_tmp_file | sed ' s/\"body\"://g;s/\"//g' )
1615
You can’t perform that action at this time.
0 commit comments