Skip to content

Commit

Permalink
#2 Remove old Gulp code as they appear to be outdated now
Browse files Browse the repository at this point in the history
  • Loading branch information
LeNPaul committed Aug 10, 2019
1 parent 81131e2 commit 22e3abf
Showing 1 changed file with 2 additions and 19 deletions.
21 changes: 2 additions & 19 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
var gulp = require('gulp');
var browserSync = require('browser-sync');
var nodemon = require('gulp-nodemon');

gulp.task('nodemon', function (done) {
nodemon({
script: './bin/www'
});
done();
});

// Recreate this configuration
// browser-sync start --proxy localhost:8080 --files="public/css/*.css", "public/js/*.js" "public/views/*.pug" --no-notify
gulp.task('browser-sync', function (done) {
browserSync({
proxy: 'localhost:8080',
files: ['public/*','views/*'],
notify: false
});
done();
});

var gulp = require('gulp');

0 comments on commit 22e3abf

Please sign in to comment.