mirror of https://github.com/gophish/gophish
parent
e785af5c0a
commit
3972fe5993
|
@ -60,7 +60,7 @@ gulp.task('scripts', function () {
|
|||
.pipe(gulp.dest(dest_js_directory + 'app/'));
|
||||
})
|
||||
|
||||
gulp.task('styles', function() {
|
||||
gulp.task('styles', function () {
|
||||
return gulp.src([
|
||||
css_directory + 'bootstrap.min.css',
|
||||
css_directory + 'main.css',
|
||||
|
@ -75,7 +75,9 @@ gulp.task('styles', function() {
|
|||
css_directory + 'select2.min.css',
|
||||
css_directory + 'select2-bootstrap.min.css',
|
||||
])
|
||||
.pipe(cleanCSS({ compatibilty: 'ie9' }))
|
||||
.pipe(cleanCSS({
|
||||
compatibilty: 'ie9'
|
||||
}))
|
||||
.pipe(concat('gophish.css'))
|
||||
.pipe(gulp.dest(dest_css_directory));
|
||||
})
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
"clean-css": "^3.4.23",
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-clean-css": "^2.3.2",
|
||||
"gulp-cli": "^1.4.0",
|
||||
"gulp-concat": "^2.6.1",
|
||||
"gulp-jshint": "^2.0.4",
|
||||
"gulp-rename": "^1.2.2",
|
||||
|
|
Loading…
Reference in New Issue