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

Commit b5fbb4a

Browse files
committed
add circle and coveralls support
1 parent 8b3697e commit b5fbb4a

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.circle.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
machine:
2+
node:
3+
version: 5.1.0

.gitignore

Lines changed: 1 addition & 0 deletions
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

package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
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 -- 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,29 @@
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+
"jade": "^1.11.0",
3843
"less": "^2.5.3",
3944
"minify": "^2.0.3",
4045
"mocha": "^2.3.4",
46+
"mocha-lcov-reporter": "^1.0.0",
4147
"node-sass": "^3.4.2",
4248
"rollup": "^0.25.1",
4349
"rollup-plugin-babel": "^2.3.9",
4450
"rollup-plugin-commonjs": "^2.2.0",
4551
"rollup-plugin-replace": "^1.1.0",
4652
"stylus": "^0.53.0",
4753
"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"
54+
"vueify-insert-css": "^1.0.0"
5255
}
5356
}
File renamed without changes.

0 commit comments

Comments
 (0)