Skip to content

Commit

Permalink
Release 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
seeden committed Jan 16, 2016
1 parent 0d6a240 commit 11e6edb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 2 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import gulp from 'gulp';
import babel from 'gulp-babel';
import jsxCoverage from 'gulp-jsx-coverage';
import path from 'path';
import coveralls from 'gulp-coveralls';

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

/*
gulp.task('coveralls', ['test'], () => {
if (!process.env.CI) {
return void 0;
Expand All @@ -47,7 +46,7 @@ gulp.task('coveralls', ['test'], () => {
return gulp.src(path.join(__dirname, 'coverage/lcov.info'))
.pipe(coveralls());
});
*/


gulp.doneCallback = (err) => {
process.exit(err ? 1 : 0);
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-translate-maker",
"version": "0.1.0",
"version": "0.1.2",
"description": "Universal internationalization (i18n) open source library for React",
"main": "dist/index.js",
"keywords": [
Expand Down Expand Up @@ -32,6 +32,7 @@
"prepublish": "npm run build",
"test": "babel-node ./node_modules/gulp/bin/gulp.js test",
"build": "babel-node ./node_modules/gulp/bin/gulp.js build",
"coveralls": "babel-node ./node_modules/gulp/bin/gulp.js coveralls",
"eslint": "node ./node_modules/eslint/bin/eslint.js --ext .js,.jsx ."
},
"repository": {
Expand Down Expand Up @@ -63,6 +64,7 @@
"eslint-plugin-react": "^3.15.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-coveralls": "^0.1.4",
"gulp-jsx-coverage": "^0.3.7",
"gulp-util": "^3.0.7",
"react": "^0.14.6",
Expand Down

0 comments on commit 11e6edb

Please sign in to comment.