Removed gulp-util and lodash-template

This commit is contained in:
Kasper Rynning-Tønnesen
2019-07-25 16:54:12 +02:00
parent 74b18b99a0
commit 6369c55252
3 changed files with 1 additions and 316 deletions

View File

@@ -1,8 +1,6 @@
var gulp = require("gulp"),
gutil = require("gulp-util"),
uglify = require("gulp-uglify"),
//sourcemaps = require('gulp-sourcemaps'),
gutil = require("gulp-util"),
concat = require("gulp-concat"),
cleanCSS = require("gulp-clean-css");
@@ -41,9 +39,6 @@ gulp.task("js", function() {
enclose: true
})
)
.on("error", function(err) {
gutil.log(gutil.colors.red("[Error]"), err.toString());
})
//.pipe(sourcemaps.write('maps'))
.pipe(gulp.dest("server/public/assets/dist"))
);
@@ -74,9 +69,6 @@ gulp.task("embed", function() {
enclose: true
})
)
.on("error", function(err) {
gutil.log(gutil.colors.red("[Error]"), err.toString());
})
//.pipe(sourcemaps.write('maps'))
.pipe(gulp.dest("server/public/assets/dist"))
);
@@ -98,10 +90,6 @@ gulp.task("token", function() {
enclose: true
})
)
.on("error", function(err) {
gutil.log(gutil.colors.red("[Error]"), err.toString());
})
//.pipe(sourcemaps.write('maps'))
.pipe(gulp.dest("server/public/assets/dist"))
);
@@ -124,10 +112,6 @@ gulp.task("callback", function() {
enclose: true
})
)
.on("error", function(err) {
gutil.log(gutil.colors.red("[Error]"), err.toString());
})
//.pipe(sourcemaps.write('maps'))
.pipe(gulp.dest("server/public/assets/dist"))
);
@@ -164,10 +148,6 @@ gulp.task("remotecontroller", function() {
enclose: true
})
)
.on("error", function(err) {
gutil.log(gutil.colors.red("[Error]"), err.toString());
})
//.pipe(sourcemaps.write('maps'))
.pipe(gulp.dest("server/public/assets/dist"))
);