Move clear tasks to the task files they relate to.

This commit is contained in:
Jürg Lehni 2016-01-25 11:06:45 +01:00
parent 3a45d36224
commit d09459646d
4 changed files with 33 additions and 47 deletions

View file

@ -19,3 +19,10 @@ gulp.task('load', ['clean:load'], function() {
.pipe(symlink('dist/paper-full.js'))
.pipe(symlink('dist/paper-node.js'));
});
gulp.task('clean:load', function() {
return del([
'dist/paper-full.js',
'dist/paper-node.js'
]);
});