Skip to content

Commit 90f6f44

Browse files
committed
➖ Clean up deps for v3
1 parent 1b2c7ee commit 90f6f44

File tree

3 files changed

+78
-2638
lines changed

3 files changed

+78
-2638
lines changed

packages/vuexfire/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ yarn-error.log
55
.nyc_output
66
coverage.lcov
77
dist
8+
package-lock.json

packages/vuexfire/package.json

+6-45
Original file line numberDiff line numberDiff line change
@@ -14,44 +14,16 @@
1414
],
1515
"scripts": {
1616
"lint": "eslint --color --ext=js,html src test examples build",
17-
"test": "yon run lint && yon run test:coverage && yon run build",
17+
"test": "npm run lint && npm run test:coverage && npm run build",
1818
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
1919
"dev": "npm-watch",
2020
"test:unit": "ava",
21-
"test:coverage": "nyc yon run test:unit",
22-
"dev:test": "yon run test:unit -- --watch",
21+
"test:coverage": "nyc npm run test:unit",
22+
"dev:test": "npm run test:unit -- --watch",
2323
"prebuild": "rimraf dist",
2424
"prepublishOnly": "npm run build",
2525
"build": "rollit",
26-
"release": "release-it pre --preReleaseId=alpha --npm.tag=next --github.preRelease",
27-
"watch": "npm-watch"
28-
},
29-
"watch": {
30-
"build": "src/**/*.js",
31-
"lint": {
32-
"extensions": "js,html",
33-
"patterns": [
34-
"{src,test}/**/*.js",
35-
"examples/**/*.html"
36-
],
37-
"quiet": true
38-
}
39-
},
40-
"ava": {
41-
"modules": false,
42-
"require": [
43-
"babel-register"
44-
],
45-
"source": [
46-
"**/*.js",
47-
"!dist/**/*"
48-
]
49-
},
50-
"nyc": {
51-
"reporter": [
52-
"lcov",
53-
"text-summary"
54-
]
26+
"release": "release-it pre --preReleaseId=alpha --npm.tag=next --github.preRelease"
5527
},
5628
"repository": {
5729
"type": "git",
@@ -81,23 +53,12 @@
8153
},
8254
"homepage": "https://github.com/posva/vuexfire#readme",
8355
"devDependencies": {
84-
"ava": "^0.24.0",
8556
"babel-preset-env": "^1.6.0",
8657
"codecov": "^3.0.0",
8758
"eslint": "^4.6.0",
8859
"eslint-config-posva": "^1.3.0",
89-
"eslint-plugin-ava": "^4.2.2",
90-
"firebase": "^4.3.0",
91-
"firebase-mock": "^1.1.5",
92-
"mkdirp": "^0.5.1",
93-
"npm-watch": "^0.3.0",
94-
"nyc": "^11.1.0",
95-
"rimraf": "^2.6.1",
96-
"rollup": "^0.53.0",
97-
"rollup-plugin-buble": "^0.18.0",
98-
"uglify-js": "^3.0.28",
60+
"rimraf": "^2.6.2",
9961
"vue": "^2.4.2",
100-
"vuex": "^3.0.0",
101-
"yarn-or-npm": "^2.0.4"
62+
"vuex": "^3.0.0"
10263
}
10364
}

0 commit comments

Comments
 (0)