Skip to content
This repository has been archived by the owner on Jan 18, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1 from znck/dev
Browse files Browse the repository at this point in the history
Version 1.0.3
  • Loading branch information
znck committed Jan 24, 2016
2 parents 8b3697e + a66a1ca commit 8d942f2
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
machine:
node:
version: 5.1.0
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ lib-cov

# Coverage directory used by tools like istanbul
coverage
.coveralls.yml

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
Expand Down
4 changes: 2 additions & 2 deletions dist/rollup-plugin-vue.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* rollup-plugin-vue v1.0.2
* rollup-plugin-vue v1.0.3
* (c) 2016 undefined
* Release under the MIT License.
*/
Expand Down Expand Up @@ -39,6 +39,6 @@ function plugin() {
}

plugin.compiler = vueify.compiler;
plugin.version = '1.0.2';
plugin.version = '1.0.3';

module.exports = plugin;
16 changes: 10 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "rollup-plugin-vue",
"version": "1.0.2",
"version": "1.0.3",
"description": "Roll .vue files",
"main": "dist/rollup-plugin-vue.common.js",
"jsnext": "src/index.js",
"scripts": {
"build": "NODE_ENV=production node --harmony config/build.js",
"test": "NODE_ENV=production mocha test/test.js --slow=5000 --timeout=10000"
"test": "NODE_ENV=production mocha test/test.js --slow=5000 --timeout=10000",
"coveralls": "NODE_ENV=production istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --slow=5000 --timeout=10000 test/test.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
Expand All @@ -27,27 +28,30 @@
"vueify": "latest"
},
"devDependencies": {
"babel-core": "^6.1.2",
"babel-plugin-transform-runtime": "latest",
"babel-preset-es2015": "latest",
"babel-preset-es2015-rollup": "latest",
"babel-register": "latest",
"babel-runtime": "^5.8.0",
"coffee-script": "^1.10.0",
"coveralls": "^2.11.6",
"diff": "^2.2.1",
"hash-sum": "latest",
"html-minifier": "^1.1.1",
"istanbul": "^0.4.2",
"jade": "^1.11.0",
"less": "^2.5.3",
"minify": "^2.0.3",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0",
"node-sass": "^3.4.2",
"rollup": "^0.25.1",
"rollup-plugin-babel": "^2.3.9",
"rollup-plugin-commonjs": "^2.2.0",
"rollup-plugin-replace": "^1.1.0",
"stylus": "^0.53.0",
"vue-hot-reload-api": "^1.2.2",
"vueify-insert-css": "^1.0.0",
"jade": "^1.11.0",
"babel-core": "^6.1.2",
"babel-runtime": "^5.8.0"
"vueify-insert-css": "^1.0.0"
}
}
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ function plugin(options = {}) {
}

plugin.compiler = compiler;
plugin.version = '1.0.2';
plugin.version = '1.0.3';

File renamed without changes.

0 comments on commit 8d942f2

Please sign in to comment.