File tree Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Expand file tree Collapse file tree 4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ set -e # exit with nonzero exit code if anything fails
55BUMP=" bump "
66SITE=" update site"
77
8- if [[ $TRAVIS_BRANCH == " master" && $TRAVIS_PULL_REQUEST == " false" ]] && [[ $TRAVIS_COMMIT_MESSAGE == * $BUMP * || $TRAVIS_COMMIT_MESSAGE == $SITE ]]; then
8+ if [[ $TRAVIS_BRANCH == " master" && $TRAVIS_PULL_REQUEST == " false" ]] && [[ $TRAVIS_COMMIT_MESSAGE == * $BUMP * || $TRAVIS_COMMIT_MESSAGE == * $SITE * ]]; then
99
1010echo " Starting to update gh-pages\n"
1111
Original file line number Diff line number Diff line change @@ -17,6 +17,12 @@ export default {
1717 type : 'Data Display' ,
1818 title : 'Comment' ,
1919 } ,
20+ configProvider : {
21+ category : 'Components' ,
22+ subtitle : '全局化配置' ,
23+ type : 'Other' ,
24+ title : 'ConfigProvider' ,
25+ } ,
2026 breadcrumb : {
2127 category : 'Components' ,
2228 subtitle : '面包屑' ,
Original file line number Diff line number Diff line change @@ -431,4 +431,12 @@ export default [
431431 path : 'comment-cn' ,
432432 component : ( ) => import ( '../components/comment/demo/index.vue' ) ,
433433 } ,
434+ {
435+ path : 'config-provider' ,
436+ component : ( ) => import ( '../components/config-provider/demo/index.vue' ) ,
437+ } ,
438+ {
439+ path : 'config-provider-cn' ,
440+ component : ( ) => import ( '../components/config-provider/demo/index.vue' ) ,
441+ } ,
434442] ;
Original file line number Diff line number Diff line change 11import 'babel-polyfill' ;
22import '../components/style.js' ;
33import './index.less' ;
4+ import 'nprogress/nprogress.css' ;
45import 'highlight.js/styles/solarized-light.css' ;
56import Vue from 'vue' ;
67import VueI18n from 'vue-i18n' ;
You can’t perform that action at this time.
0 commit comments