Created
February 29, 2016 11:16
-
-
Save jt-nti/4fddbe8427fedde585d6 to your computer and use it in GitHub Desktop.
Attempting to make Gulp work, e.g. it would be nice if it actually exited after tasks finish. Work in progress!
This file contains 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
'use strict'; | |
var gulp = require('gulp'), | |
del = require('del'); | |
var distFolder = './dist'; | |
gulp.task('clean', function () { | |
return del([distFolder]); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment