Add package.json and update gulpfile.

This commit is contained in:
David Molineus
2016-10-05 09:23:41 +02:00
parent 11bc76fea6
commit ddcec3f1e3
2 changed files with 33 additions and 2 deletions

View File

@@ -9,8 +9,8 @@ var paths = {
dest: 'assets/maps'
};
gulp.task('clear', function(cb) {
del([paths.dest + '/' + paths.minified], cb);
gulp.task('clear', function() {
del([paths.dest + '/' + paths.minified]);
});
gulp.task('scripts', ['clear'], function() {