Skip to content

Instantly share code, notes, and snippets.

@jt-nti
Created February 29, 2016 11:16
Show Gist options
  • Save jt-nti/4fddbe8427fedde585d6 to your computer and use it in GitHub Desktop.
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!
'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