Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeonghwan-kim/a010212dccbfd25cead6 to your computer and use it in GitHub Desktop.
Save jeonghwan-kim/a010212dccbfd25cead6 to your computer and use it in GitHub Desktop.
// Include gulp
var gulp = require('gulp');
// Include Our Plugins
var jshint = require('gulp-jshint');
var sass = require('gulp-sass');
var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var rename = require('gulp-rename');
var mocha = require('gulp-mocha');
var nodemon = require('gulp-nodemon');
// Lint Tasks
gulp.task('lint', function() {
return gulp.src(['public/js/*.js', 'routes/**/*.js'])
.pipe(jshint())
.pipe(jshint.reporter('default'));
});
// Compile Our Sass
gulp.task('sass', function() {
return gulp.src('sass/*.sass')
.pipe(sass())
.pipe(gulp.dest('public/css'));
});
gulp.task('develop', function () {
nodemon({
script: 'app.js',
ext: 'html js',
env: { 'NODE_ENV': 'development' }
})
.on('restart', function () {
console.log('restarted!')
})
});
gulp.task('test', function () {
gulp.src('test/**/*.js')
.pipe(mocha({
reporter: 'nyan',
clearRequireCache: true,
ignoreLeaks: true
}));
});
// Watch Files For Changes
gulp.task('watch', function() {
gulp.watch('public/js/*.js', ['lint']);
gulp.watch(['routes/**/*.js', 'app.js', 'test/**/*.js'], ['lint', 'test']);
gulp.watch('sass/*.sass', ['sass']);
});
// Default Task
gulp.task('default', ['lint', 'test', 'sass', 'develop', 'watch']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment