Skip to content
This repository was archived by the owner on Nov 24, 2021. It is now read-only.

Commit f485f2a

Browse files
committed
Housekeeping
1 parent f1a94c6 commit f485f2a

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

.travis.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
1-
# Config file for https://travis-ci.org/
2-
# Validate this file here - http://lint.travis-ci.org/
3-
41
language: node_js
52
node_js:
63
- "10"
74

8-
# Speed up git clones
9-
git:
10-
depth: 10
11-
submodules: false
12-
135
# Install custom version
146
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
168
- export PATH="$HOME/.yarn/bin:$PATH"
179

1810
install:

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
"homepage": "https://github.com/ankurk91/vue-web-storage",
2727
"scripts": {
2828
"test": "jest",
29-
"test:watch": "npm run test -- --watch --onlyChanged --notify",
29+
"test:watch": "yarn run test --watch --onlyChanged --notify",
3030
"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"
3232
},
3333
"devDependencies": {
3434
"@babel/core": "^7.1.5",

src/events.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {parseJSON} from "./util";
1+
import {parseJSON} from './util';
22

33
let listeners = {};
44

webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = {
1313
path.resolve(__dirname, 'node_modules'),
1414
],
1515
alias: {
16-
'vue$': 'vue/dist/vue.esm.js'
16+
'vue$': 'vue/dist/vue.runtime.esm.js'
1717
},
1818
extensions: ['.js', '.json', '.vue']
1919
},

0 commit comments

Comments
 (0)