This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* @type Module gulp|Module gulp | |
* gulp file that will monitor files in the src tree and then move them | |
* to the tomcat instance. In effect a poor-man's JRebel | |
* | |
* Your tomcat server needs to be running and to see the changes | |
* This script will also refresh one page of your choice specified in the | |
* refresh page. Refreshing the page requires installation of the chrome | |
* live reload plugin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var concat = require('gulp-concat'); | |
var sass = require('gulp-sass'); | |
var watch = require('gulp-watch'); | |
var livereload = require('gulp-livereload'); | |
var tap = require('gulp-tap'); | |
var nodemon = require('gulp-nodemon'); | |
var path = require('path'); | |
var gutil = require('gulp-util'); |
NewerOlder