From ff2e1b20efdc5bb2e04955800bd2fca150a38b55 Mon Sep 17 00:00:00 2001 From: tngan Date: Wed, 24 Feb 2016 13:11:32 +0800 Subject: [PATCH] Remove gulpfile.js --- gulpfile.js | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 gulpfile.js diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index 1b3cc5fb..00000000 --- a/gulpfile.js +++ /dev/null @@ -1,19 +0,0 @@ -var gulp = require('gulp'), - eslint = require('gulp-eslint'); - -gulp.task('lint', function () { - return gulp.src(['lib/*.js']) - // eslint() attaches the lint output to the eslint property - // of the file object so it can be used by other modules. - .pipe(eslint()) - // eslint.format() outputs the lint results to the console. - // Alternatively use eslint.formatEach() (see Docs). - .pipe(eslint.format()) - // To have the process exit with an error code (1) on - // lint error, return the stream and pipe to failOnError last. - .pipe(eslint.failOnError()); -}); - -gulp.task('default',['lint'],function(){ - console.log('Successful build') -});