Comparing version 1.0.2 to 1.0.3
@@ -9,3 +9,3 @@ const gulp = require('gulp'); | ||
gulp.task('clean:dist',() => { | ||
gulp.task('clean:dist', () => { | ||
return gulp.src('./dist', { read: false }) | ||
@@ -12,0 +12,0 @@ .pipe(clean()); |
@@ -5,3 +5,3 @@ const gulp = require('gulp'); | ||
gulp.task('codeclimate',() => { | ||
gulp.task('codeclimate', () => { | ||
if (process.version.indexOf('v4') > -1) { | ||
@@ -8,0 +8,0 @@ gulp.src('coverage/lcov.info', { read: false }) |
const gulp = require('gulp'); | ||
const config = require('./config'); | ||
gulp.task('copy', ['clean:dist'],() => { | ||
gulp.task('copy', ['clean:dist'], () => { | ||
gulp.src(config.lib) | ||
.pipe(gulp.dest('dist')); | ||
}); |
@@ -6,3 +6,3 @@ const gulp = require('gulp'); | ||
gulp.task('cover', ['clean:coverage', 'instrument'],() => { | ||
gulp.task('cover', ['clean:coverage', 'instrument'], () => { | ||
return gulp.src(config.tests, { read: false }) | ||
@@ -9,0 +9,0 @@ .pipe(mocha({ |
@@ -5,3 +5,3 @@ const gulp = require('gulp'); | ||
gulp.task('instrument',() => { | ||
gulp.task('instrument', () => { | ||
gulp.src(config.lib) | ||
@@ -8,0 +8,0 @@ .pipe(istanbul({ |
{ | ||
"name": "conjugate", | ||
"description": "Conjugate verbs correctly based on a pronoun", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"main": "lib/conjugate.js", | ||
@@ -43,3 +43,3 @@ "scripts": { | ||
"gulp-istanbul": "^1.1.1", | ||
"gulp-mocha": "^3.0.1", | ||
"gulp-mocha": "^4.0.0", | ||
"gulp-open": "^2.0.0", | ||
@@ -46,0 +46,0 @@ "gulp-rename": "^1.2.2", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32288