vue-async-computed
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -5,2 +5,3 @@ <!-- START doctoc generated TOC please keep comment here to allow auto update --> | ||
- [v3.0.1](#v301) | ||
- [v3.0.0](#v300) | ||
@@ -17,2 +18,5 @@ - [v2.1.1](#v211) | ||
### v3.0.1 | ||
* More test cases | ||
### v3.0.0 | ||
@@ -19,0 +23,0 @@ * Pass the raw error to the error handler when passed the `useRawError` option. |
{ | ||
"name": "vue-async-computed", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Async computed properties for Vue", | ||
@@ -19,3 +19,3 @@ "main": "dist/index.js", | ||
"postbuild": "npm run test -s", | ||
"coverage": "babel-node node_modules/isparta/bin/isparta cover test/index.js", | ||
"coverage": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover test/index.js", | ||
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info", | ||
@@ -51,24 +51,24 @@ "postcoveralls": "rimraf ./coverage", | ||
"devDependencies": { | ||
"babel-cli": "^6.6.5", | ||
"babel-core": "^6.7.7", | ||
"babel-cli": "^6.23.0", | ||
"babel-core": "^6.23.1", | ||
"babel-eslint": "^7.0.0", | ||
"babel-istanbul": "^0.12.1", | ||
"babel-plugin-add-module-exports": "^0.2.1", | ||
"babel-plugin-rename-umd-globals": "^1.0.0", | ||
"babel-plugin-transform-es2015-modules-umd": "^6.18.0", | ||
"babel-plugin-transform-es2015-modules-umd": "^6.23.0", | ||
"babel-preset-es2015": "^6.6.0", | ||
"coveralls": "^2.11.9", | ||
"dependency-check": "^2.5.1", | ||
"coveralls": "^2.11.16", | ||
"dependency-check": "^2.8.0", | ||
"doctoc": "^1.0.0", | ||
"eslint": "^3.8.1", | ||
"eslint": "^3.15.0", | ||
"eslint-config-standard": "^6.0.0", | ||
"eslint-plugin-promise": "^3.3.0", | ||
"eslint-plugin-promise": "^3.4.2", | ||
"eslint-plugin-standard": "^2.0.0", | ||
"estraverse-fb": "^1.3.1", | ||
"isparta": "^4.0.0", | ||
"rimraf": "^2.5.2", | ||
"rimraf": "^2.6.0", | ||
"tap-spec": "^4.1.1", | ||
"tape": "^4.5.1", | ||
"vue": "^2.1.4", | ||
"watch": "^1.0.1" | ||
"vue": "^2.1.10", | ||
"watch": "^1.0.2" | ||
} | ||
} |
@@ -35,4 +35,2 @@ <big><h1 align="center">vue-async-computed</h1></big> | ||
**This plugin is now Vue 2.0 compatible!** | ||
With this plugin, you can have have computed properties in Vue that are computed asynchronously. | ||
@@ -39,0 +37,0 @@ |
Sorry, the diff of this file is not supported yet
15712
272