File tree 4 files changed +16
-1
lines changed
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
5
5
BUMP=" bump "
6
6
SITE=" update site"
7
7
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
9
9
10
10
echo " Starting to update gh-pages\n"
11
11
Original file line number Diff line number Diff line change @@ -17,6 +17,12 @@ export default {
17
17
type : 'Data Display' ,
18
18
title : 'Comment' ,
19
19
} ,
20
+ configProvider : {
21
+ category : 'Components' ,
22
+ subtitle : '全局化配置' ,
23
+ type : 'Other' ,
24
+ title : 'ConfigProvider' ,
25
+ } ,
20
26
breadcrumb : {
21
27
category : 'Components' ,
22
28
subtitle : '面包屑' ,
Original file line number Diff line number Diff line change @@ -431,4 +431,12 @@ export default [
431
431
path : 'comment-cn' ,
432
432
component : ( ) => import ( '../components/comment/demo/index.vue' ) ,
433
433
} ,
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
+ } ,
434
442
] ;
Original file line number Diff line number Diff line change 1
1
import 'babel-polyfill' ;
2
2
import '../components/style.js' ;
3
3
import './index.less' ;
4
+ import 'nprogress/nprogress.css' ;
4
5
import 'highlight.js/styles/solarized-light.css' ;
5
6
import Vue from 'vue' ;
6
7
import VueI18n from 'vue-i18n' ;
You can’t perform that action at this time.
0 commit comments