This repository was archived by the owner on Nov 24, 2021. It is now read-only.
File tree 4 files changed +5
-13
lines changed
4 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 1
- # Config file for https://travis-ci.org/
2
- # Validate this file here - http://lint.travis-ci.org/
3
-
4
1
language : node_js
5
2
node_js :
6
3
- " 10"
7
4
8
- # Speed up git clones
9
- git :
10
- depth : 10
11
- submodules : false
12
-
13
5
# Install custom version
14
6
before_install :
15
- - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4
7
+ - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.1
16
8
- export PATH="$HOME/.yarn/bin:$PATH"
17
9
18
10
install :
Original file line number Diff line number Diff line change 26
26
"homepage" : " https://github.com/ankurk91/vue-web-storage" ,
27
27
"scripts" : {
28
28
"test" : " jest" ,
29
- "test:watch" : " npm run test -- --watch --onlyChanged --notify" ,
29
+ "test:watch" : " yarn run test --watch --onlyChanged --notify" ,
30
30
"build" : " cross-env NODE_ENV=production webpack --progress --mode production" ,
31
- "prepublishOnly" : " npm run test && npm run build"
31
+ "prepublishOnly" : " yarn run test && yarn run build"
32
32
},
33
33
"devDependencies" : {
34
34
"@babel/core" : " ^7.1.5" ,
Original file line number Diff line number Diff line change 1
- import { parseJSON } from " ./util" ;
1
+ import { parseJSON } from ' ./util' ;
2
2
3
3
let listeners = { } ;
4
4
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ module.exports = {
13
13
path . resolve ( __dirname , 'node_modules' ) ,
14
14
] ,
15
15
alias : {
16
- 'vue$' : 'vue/dist/vue.esm.js'
16
+ 'vue$' : 'vue/dist/vue.runtime. esm.js'
17
17
} ,
18
18
extensions : [ '.js' , '.json' , '.vue' ]
19
19
} ,
You can’t perform that action at this time.
0 commit comments