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

add circle and coveralls support #1

Merged
merged 3 commits into from
Jan 24, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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';