mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-12-31 22:56:16 +00:00
Removed gulp-util and lodash-template
This commit is contained in:
20
gulpfile.js
20
gulpfile.js
@@ -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"))
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user