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

Commit 8d942f2

Browse files
committed
Merge pull request #1 from znck/dev
Version 1.0.3
2 parents 8b3697e + a66a1ca commit 8d942f2

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

Diff for: .circle.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
machine:
2+
node:
3+
version: 5.1.0

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ lib-cov
1313

1414
# Coverage directory used by tools like istanbul
1515
coverage
16+
.coveralls.yml
1617

1718
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
1819
.grunt

Diff for: dist/rollup-plugin-vue.common.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* rollup-plugin-vue v1.0.2
2+
* rollup-plugin-vue v1.0.3
33
* (c) 2016 undefined
44
* Release under the MIT License.
55
*/
@@ -39,6 +39,6 @@ function plugin() {
3939
}
4040

4141
plugin.compiler = vueify.compiler;
42-
plugin.version = '1.0.2';
42+
plugin.version = '1.0.3';
4343

4444
module.exports = plugin;

Diff for: package.json

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
22
"name": "rollup-plugin-vue",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Roll .vue files",
55
"main": "dist/rollup-plugin-vue.common.js",
66
"jsnext": "src/index.js",
77
"scripts": {
88
"build": "NODE_ENV=production node --harmony config/build.js",
9-
"test": "NODE_ENV=production mocha test/test.js --slow=5000 --timeout=10000"
9+
"test": "NODE_ENV=production mocha test/test.js --slow=5000 --timeout=10000",
10+
"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"
1011
},
1112
"repository": {
1213
"type": "git",
@@ -27,27 +28,30 @@
2728
"vueify": "latest"
2829
},
2930
"devDependencies": {
31+
"babel-core": "^6.1.2",
3032
"babel-plugin-transform-runtime": "latest",
3133
"babel-preset-es2015": "latest",
3234
"babel-preset-es2015-rollup": "latest",
3335
"babel-register": "latest",
36+
"babel-runtime": "^5.8.0",
3437
"coffee-script": "^1.10.0",
38+
"coveralls": "^2.11.6",
3539
"diff": "^2.2.1",
3640
"hash-sum": "latest",
3741
"html-minifier": "^1.1.1",
42+
"istanbul": "^0.4.2",
43+
"jade": "^1.11.0",
3844
"less": "^2.5.3",
3945
"minify": "^2.0.3",
4046
"mocha": "^2.3.4",
47+
"mocha-lcov-reporter": "^1.0.0",
4148
"node-sass": "^3.4.2",
4249
"rollup": "^0.25.1",
4350
"rollup-plugin-babel": "^2.3.9",
4451
"rollup-plugin-commonjs": "^2.2.0",
4552
"rollup-plugin-replace": "^1.1.0",
4653
"stylus": "^0.53.0",
4754
"vue-hot-reload-api": "^1.2.2",
48-
"vueify-insert-css": "^1.0.0",
49-
"jade": "^1.11.0",
50-
"babel-core": "^6.1.2",
51-
"babel-runtime": "^5.8.0"
55+
"vueify-insert-css": "^1.0.0"
5256
}
5357
}

Diff for: src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ function plugin(options = {}) {
3535
}
3636

3737
plugin.compiler = compiler;
38-
plugin.version = '1.0.2';
38+
plugin.version = '1.0.3';
3939

File renamed without changes.

0 commit comments

Comments
 (0)