File tree 4 files changed +53
-0
lines changed
4 files changed +53
-0
lines changed Original file line number Diff line number Diff line change
1
+ example /test-project
2
+
1
3
# Logs
2
4
logs
3
5
* .log
Original file line number Diff line number Diff line change
1
+ language : node_js
2
+ sudo : true
3
+ node_js : stable
4
+ env :
5
+ matrix :
6
+ - version=latest
7
+ - version=current
8
+ matrix :
9
+ fast_finish : true
10
+ allow_failures :
11
+ - env : version=latest
12
+ before_install :
13
+ - sudo apt-get install expect
14
+ install :
15
+ - cd example
16
+ - npm install --no-package-lock
17
+ - ./initialize
18
+ script :
19
+ - cd test-project
20
+ - npm install
21
+ - ' if [ "$version" == "latest" ]; then
22
+ npm update;
23
+ fi'
24
+ - npm run build
25
+ notifications :
26
+ email : false
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/expect
2
+ set timeout 360
3
+
4
+ spawn ./node_modules/.bin/vue init ../ test-project
5
+
6
+ # This happens because of
7
+ # https://github.com/vuejs/vue-cli/issues/291
8
+ expect "name" { send "\n" }
9
+ expect "author" { send "\n" }
10
+ expect "vue-cli · Generated" { send "\n" }
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " example" ,
3
+ "description" : " example" ,
4
+ "version" : " 1.0.0" ,
5
+ "devDependencies" : {
6
+ "vue-cli" : " ^2.9.1"
7
+ },
8
+ "license" : " UNLICENSED" ,
9
+ "main" : " n/a" ,
10
+ "private" : true ,
11
+ "repository" : {
12
+ "type" : " git" ,
13
+ "url" :
" git+ssh://[email protected] /nuxt-community/typescript-template.git"
14
+ }
15
+ }
You can’t perform that action at this time.
0 commit comments