Skip to content

Commit 11e6edb

Browse files
committed
Release 0.1.2
1 parent 0d6a240 commit 11e6edb

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

gulpfile.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import gulp from 'gulp';
22
import babel from 'gulp-babel';
33
import jsxCoverage from 'gulp-jsx-coverage';
44
import path from 'path';
5+
import coveralls from 'gulp-coveralls';
56

67
gulp.task('test', jsxCoverage.createTask({
78
src: ['./tests/**/*{.js,.jsx}'], // will pass to gulp.src as mocha tests
@@ -37,8 +38,6 @@ gulp.task('build', () => {
3738
.pipe(gulp.dest('./dist'));
3839
});
3940

40-
/*
41-
4241
gulp.task('coveralls', ['test'], () => {
4342
if (!process.env.CI) {
4443
return void 0;
@@ -47,7 +46,7 @@ gulp.task('coveralls', ['test'], () => {
4746
return gulp.src(path.join(__dirname, 'coverage/lcov.info'))
4847
.pipe(coveralls());
4948
});
50-
*/
49+
5150

5251
gulp.doneCallback = (err) => {
5352
process.exit(err ? 1 : 0);

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-translate-maker",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"description": "Universal internationalization (i18n) open source library for React",
55
"main": "dist/index.js",
66
"keywords": [
@@ -32,6 +32,7 @@
3232
"prepublish": "npm run build",
3333
"test": "babel-node ./node_modules/gulp/bin/gulp.js test",
3434
"build": "babel-node ./node_modules/gulp/bin/gulp.js build",
35+
"coveralls": "babel-node ./node_modules/gulp/bin/gulp.js coveralls",
3536
"eslint": "node ./node_modules/eslint/bin/eslint.js --ext .js,.jsx ."
3637
},
3738
"repository": {
@@ -63,6 +64,7 @@
6364
"eslint-plugin-react": "^3.15.0",
6465
"gulp": "^3.9.0",
6566
"gulp-babel": "^6.1.1",
67+
"gulp-coveralls": "^0.1.4",
6668
"gulp-jsx-coverage": "^0.3.7",
6769
"gulp-util": "^3.0.7",
6870
"react": "^0.14.6",

0 commit comments

Comments
 (0)