File tree 4 files changed +9
-5
lines changed
4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
- <p align =" center " ><img src =" https://github.com/pi0/bootstrap-vue/raw/master/banner.png " ></p >
2
-
3
1
# Bootstrap Vue
4
2
[ Twitter Bootstrap 4] ( https://v4-alpha.getbootstrap.com/ ) components for [ Vue.js 2] ( https://vuejs.org/ )
5
3
6
4
[ ![ CircleCI] ( https://circleci.com/gh/bootstrap-vue/bootstrap-vue.svg?style=svg )] ( https://circleci.com/gh/bootstrap-vue/bootstrap-vue )
7
5
8
6
[ ![ NPM] ( https://nodei.co/npm-dl/bootstrap-vue.png?months=3&height=3 )] ( https://nodei.co/npm/bootstrap-vue/ )
9
7
8
+ <p align =" center " ><img src =" https://github.com/bootstrap-vue/bootstrap-vue/raw/master/banner.png " ></p >
9
+
10
10
## Quick Start
11
11
12
12
Install via ** NPM** :
Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ compile:
22
22
- yarn build
23
23
# - cp -rv build/* $CIRCLE_ARTIFACTS
24
24
25
+ test :
26
+ override :
27
+ - echo "test"
28
+
25
29
deployment :
26
30
npm :
27
31
tag : /v[0-9]+(\.[0-9]+)*/
Original file line number Diff line number Diff line change 21
21
"build" : " cd scripts && ./build" ,
22
22
"docs-dev" : " nuxt dev" ,
23
23
"docs-gen" : " nuxt generate" ,
24
- "docs-deploy" : " cs scripts && ./gh-pages"
24
+ "docs-deploy" : " cd scripts && ./gh-pages"
25
25
},
26
26
"keywords" : [
27
27
" Bootstrap" ,
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -x -e
3
3
cd ..
4
- rm -r dist
4
+ [ -d dist ] && rm -rv dist
5
5
git clone $GH_PAGES_REPO dist
6
6
yarn docs-gen
7
7
cd dist
8
8
git add --all
9
9
git commit -m " Published by CI"
10
- git push
10
+ git push -ff
You can’t perform that action at this time.
0 commit comments