Browse Source

Merge pull request #2668 from fholzer/patch-1

fix build/watch for people importing tasks into their own gulpfile
pull/2717/head
Jack Lukic 9 years ago
parent
commit
d87fa69ed8
2 changed files with 2 additions and 2 deletions
  1. 2
      tasks/build.js
  2. 2
      tasks/watch.js

2
tasks/build.js

@ -3,7 +3,7 @@
*******************************/
var
gulp = require('gulp'),
gulp = require('gulp-help')(require('gulp')),
// config
config = require('./config/user'),

2
tasks/watch.js

@ -3,7 +3,7 @@
*******************************/
var
gulp = require('gulp'),
gulp = require('gulp-help')(require('gulp')),
// node dependencies
console = require('better-console'),

Loading…
Cancel
Save