mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-25 09:00:25 +00:00
Refactored for better handling of 3rd party dependencies
This commit is contained in:
parent
edb2c1ce4d
commit
2ad8ded664
1 changed files with 144 additions and 111 deletions
255
gulpfile.js
255
gulpfile.js
|
@ -1,123 +1,156 @@
|
||||||
var gulp = require('gulp');
|
"use strict";
|
||||||
var less = require('gulp-less');
|
|
||||||
var browserSync = require('browser-sync').create();
|
// Load plugins
|
||||||
var header = require('gulp-header');
|
const autoprefixer = require("gulp-autoprefixer");
|
||||||
var cleanCSS = require('gulp-clean-css');
|
const browsersync = require("browser-sync").create();
|
||||||
var rename = require("gulp-rename");
|
const cleanCSS = require("gulp-clean-css");
|
||||||
var uglify = require('gulp-uglify');
|
const del = require("del");
|
||||||
var pkg = require('./package.json');
|
const gulp = require("gulp");
|
||||||
|
const header = require("gulp-header");
|
||||||
|
const merge = require("merge-stream");
|
||||||
|
const plumber = require("gulp-plumber");
|
||||||
|
const rename = require("gulp-rename");
|
||||||
|
const sass = require("gulp-sass");
|
||||||
|
const uglify = require("gulp-uglify");
|
||||||
|
|
||||||
|
// Load package.json for banner
|
||||||
|
const pkg = require('./package.json');
|
||||||
|
|
||||||
// Set the banner content
|
// Set the banner content
|
||||||
var banner = ['/*!\n',
|
const banner = ['/*!\n',
|
||||||
' * Start Bootstrap - <%= pkg.title %> v<%= pkg.version %> (<%= pkg.homepage %>)\n',
|
' * RaspAP - <%= pkg.title %> v<%= pkg.version %> (<%= pkg.homepage %>)\n',
|
||||||
' * Copyright 2013-' + (new Date()).getFullYear(), ' <%= pkg.author %>\n',
|
' * Copyright 2013-' + (new Date()).getFullYear(), ' <%= pkg.author %>\n',
|
||||||
' * Licensed under <%= pkg.license.type %> (<%= pkg.license.url %>)\n',
|
' * Licensed under <%= pkg.license %> (https://github.com/raspap-webgui/<%= pkg.name %>/blob/master/LICENSE)\n',
|
||||||
' */\n',
|
' */\n',
|
||||||
''
|
'\n'
|
||||||
].join('');
|
].join('');
|
||||||
|
|
||||||
// Compile LESS files from /less into /css
|
// BrowserSync
|
||||||
gulp.task('less', function() {
|
function browserSync(done) {
|
||||||
return gulp.src('less/sb-admin-2.less')
|
browsersync.init({
|
||||||
.pipe(less())
|
server: {
|
||||||
.pipe(header(banner, { pkg: pkg }))
|
baseDir: "./"
|
||||||
.pipe(gulp.dest('dist/css'))
|
},
|
||||||
.pipe(browserSync.reload({
|
port: 3000
|
||||||
stream: true
|
});
|
||||||
}))
|
done();
|
||||||
});
|
}
|
||||||
|
|
||||||
// Minify compiled CSS
|
// BrowserSync reload
|
||||||
gulp.task('minify-css', ['less'], function() {
|
function browserSyncReload(done) {
|
||||||
return gulp.src('dist/css/sb-admin-2.css')
|
browsersync.reload();
|
||||||
.pipe(cleanCSS({ compatibility: 'ie8' }))
|
done();
|
||||||
.pipe(rename({ suffix: '.min' }))
|
}
|
||||||
.pipe(gulp.dest('dist/css'))
|
|
||||||
.pipe(browserSync.reload({
|
|
||||||
stream: true
|
|
||||||
}))
|
|
||||||
});
|
|
||||||
|
|
||||||
// Copy JS to dist
|
// Clean vendor
|
||||||
gulp.task('js', function() {
|
function clean() {
|
||||||
return gulp.src(['js/sb-admin-2.js'])
|
return del(["./dist/"]);
|
||||||
.pipe(header(banner, { pkg: pkg }))
|
}
|
||||||
.pipe(gulp.dest('dist/js'))
|
|
||||||
.pipe(browserSync.reload({
|
|
||||||
stream: true
|
|
||||||
}))
|
|
||||||
})
|
|
||||||
|
|
||||||
// Minify JS
|
// Bring third party dependencies from node_modules into dist directory
|
||||||
gulp.task('minify-js', ['js'], function() {
|
function modules() {
|
||||||
return gulp.src('js/sb-admin-2.js')
|
// Bootstrap JS
|
||||||
.pipe(uglify())
|
var bootstrapJS = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/bootstrap/js/*')
|
||||||
.pipe(header(banner, { pkg: pkg }))
|
.pipe(gulp.dest('./dist/bootstrap/js'));
|
||||||
.pipe(rename({ suffix: '.min' }))
|
// Bootstrap SCSS
|
||||||
.pipe(gulp.dest('dist/js'))
|
var bootstrapSCSS = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/bootstrap/css/*')
|
||||||
.pipe(browserSync.reload({
|
.pipe(gulp.dest('./dist/bootstrap/css'));
|
||||||
stream: true
|
// Morris JS
|
||||||
}))
|
var morrisJS = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/morrisjs/*')
|
||||||
});
|
.pipe(gulp.dest('./dist/morrisjs'));
|
||||||
|
// metisMenu
|
||||||
|
var metisMenu = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/metisMenu/*')
|
||||||
|
.pipe(gulp.dest('./dist/metisMenu'))
|
||||||
|
// Raphael
|
||||||
|
var raphael = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/raphael/*')
|
||||||
|
.pipe(gulp.dest('./dist/raphael'))
|
||||||
|
// dataTables
|
||||||
|
var dataTables = gulp.src([
|
||||||
|
'./node_modules/startbootstrap-sb-admin-2/vendor/datatables/js/*',
|
||||||
|
'./node_modules/startbootstrap-sb-admin-2/vendor/datatables/css/*'
|
||||||
|
])
|
||||||
|
.pipe(gulp.dest('./dist/datatables'));
|
||||||
|
// Font Awesome
|
||||||
|
var fontAwesome = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/font-awesome/**/*')
|
||||||
|
.pipe(gulp.dest('./dist/font-awesome'));
|
||||||
|
// jQuery Easing
|
||||||
|
var jqueryEasing = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/jquery.easing/*.js')
|
||||||
|
.pipe(gulp.dest('./dist/jquery-easing'));
|
||||||
|
// jQuery
|
||||||
|
var jquery = gulp.src('./node_modules/startbootstrap-sb-admin-2/vendor/jquery/*')
|
||||||
|
.pipe(gulp.dest('./dist/jquery'));
|
||||||
|
// SB Admin 2 JS
|
||||||
|
var sbadmin2JS = gulp.src('./node_modules/startbootstrap-sb-admin-2/dist/js/*')
|
||||||
|
.pipe(gulp.dest('./dist/sb-admin-2/js'));
|
||||||
|
// SB Admin2 CSS
|
||||||
|
var sbadmin2CSS = gulp.src('./node_modules/startbootstrap-sb-admin-2/dist/css/*')
|
||||||
|
.pipe(gulp.dest('./dist/sb-admin-2/css'));
|
||||||
|
// Bootstrap Toggle
|
||||||
|
var bootstraptoggle = gulp.src('./node_modules/bootstrap-toggle/**/*')
|
||||||
|
.pipe(gulp.dest('./dist/bootstrap-toggle'));
|
||||||
|
return merge(bootstrapJS, bootstrapSCSS, morrisJS, metisMenu, raphael, dataTables, fontAwesome, jquery, jqueryEasing, sbadmin2JS, sbadmin2CSS, bootstraptoggle);
|
||||||
|
}
|
||||||
|
|
||||||
// Copy vendor libraries from /bower_components into /vendor
|
// CSS task
|
||||||
gulp.task('copy', function() {
|
function css() {
|
||||||
gulp.src(['bower_components/bootstrap/dist/**/*', '!**/npm.js', '!**/bootstrap-theme.*', '!**/*.map'])
|
return gulp
|
||||||
.pipe(gulp.dest('vendor/bootstrap'))
|
.src("./scss/**/*.scss")
|
||||||
|
.pipe(plumber())
|
||||||
|
.pipe(sass({
|
||||||
|
outputStyle: "expanded",
|
||||||
|
includePaths: "./node_modules",
|
||||||
|
}))
|
||||||
|
.on("error", sass.logError)
|
||||||
|
.pipe(autoprefixer({
|
||||||
|
cascade: false
|
||||||
|
}))
|
||||||
|
.pipe(header(banner, {
|
||||||
|
pkg: pkg
|
||||||
|
}))
|
||||||
|
.pipe(gulp.dest("./css"))
|
||||||
|
.pipe(rename({
|
||||||
|
suffix: ".min"
|
||||||
|
}))
|
||||||
|
.pipe(cleanCSS())
|
||||||
|
.pipe(gulp.dest("./css"))
|
||||||
|
.pipe(browsersync.stream());
|
||||||
|
}
|
||||||
|
|
||||||
gulp.src(['bower_components/bootstrap-social/*.css', 'bower_components/bootstrap-social/*.less', 'bower_components/bootstrap-social/*.scss'])
|
// JS task
|
||||||
.pipe(gulp.dest('vendor/bootstrap-social'))
|
function js() {
|
||||||
|
return gulp
|
||||||
|
.src([
|
||||||
|
'./js/*.js',
|
||||||
|
'!./js/*.min.js',
|
||||||
|
])
|
||||||
|
.pipe(uglify())
|
||||||
|
.pipe(header(banner, {
|
||||||
|
pkg: pkg
|
||||||
|
}))
|
||||||
|
.pipe(rename({
|
||||||
|
suffix: '.min'
|
||||||
|
}))
|
||||||
|
.pipe(gulp.dest('./js'))
|
||||||
|
.pipe(browsersync.stream());
|
||||||
|
}
|
||||||
|
|
||||||
gulp.src(['bower_components/datatables/media/**/*'])
|
// Watch files
|
||||||
.pipe(gulp.dest('vendor/datatables'))
|
function watchFiles() {
|
||||||
|
gulp.watch("./scss/**/*", css);
|
||||||
|
gulp.watch(["./js/**/*", "!./js/**/*.min.js"], js);
|
||||||
|
gulp.watch("./**/*.html", browserSyncReload);
|
||||||
|
}
|
||||||
|
|
||||||
gulp.src(['bower_components/datatables-plugins/integration/bootstrap/3/*'])
|
// Define complex tasks
|
||||||
.pipe(gulp.dest('vendor/datatables-plugins'))
|
const vendor = gulp.series(clean, modules);
|
||||||
|
const build = gulp.series(vendor, gulp.parallel(css, js));
|
||||||
|
const watch = gulp.series(build, gulp.parallel(watchFiles, browserSync));
|
||||||
|
|
||||||
gulp.src(['bower_components/datatables-responsive/css/*', 'bower_components/datatables-responsive/js/*'])
|
// Export tasks
|
||||||
.pipe(gulp.dest('vendor/datatables-responsive'))
|
exports.css = css;
|
||||||
|
exports.js = js;
|
||||||
gulp.src(['bower_components/flot/*.js'])
|
exports.clean = clean;
|
||||||
.pipe(gulp.dest('vendor/flot'))
|
exports.vendor = vendor;
|
||||||
|
exports.build = build;
|
||||||
gulp.src(['bower_components/flot.tooltip/js/*.js'])
|
exports.watch = watch;
|
||||||
.pipe(gulp.dest('vendor/flot-tooltip'))
|
exports.default = build;
|
||||||
|
|
||||||
gulp.src(['bower_components/font-awesome/**/*', '!bower_components/font-awesome/*.json', '!bower_components/font-awesome/.*'])
|
|
||||||
.pipe(gulp.dest('vendor/font-awesome'))
|
|
||||||
|
|
||||||
gulp.src(['bower_components/jquery/dist/jquery.js', 'bower_components/jquery/dist/jquery.min.js'])
|
|
||||||
.pipe(gulp.dest('vendor/jquery'))
|
|
||||||
|
|
||||||
gulp.src(['bower_components/metisMenu/dist/*'])
|
|
||||||
.pipe(gulp.dest('vendor/metisMenu'))
|
|
||||||
|
|
||||||
gulp.src(['bower_components/morrisjs/*.js', 'bower_components/morrisjs/*.css', '!bower_components/morrisjs/Gruntfile.js'])
|
|
||||||
.pipe(gulp.dest('vendor/morrisjs'))
|
|
||||||
|
|
||||||
gulp.src(['bower_components/raphael/raphael.js', 'bower_components/raphael/raphael.min.js'])
|
|
||||||
.pipe(gulp.dest('vendor/raphael'))
|
|
||||||
|
|
||||||
})
|
|
||||||
|
|
||||||
// Run everything
|
|
||||||
gulp.task('default', ['minify-css', 'minify-js', 'copy']);
|
|
||||||
|
|
||||||
// Configure the browserSync task
|
|
||||||
gulp.task('browserSync', function() {
|
|
||||||
browserSync.init({
|
|
||||||
server: {
|
|
||||||
baseDir: ''
|
|
||||||
},
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
// Dev task with browserSync
|
|
||||||
gulp.task('dev', ['browserSync', 'less', 'minify-css', 'js', 'minify-js'], function() {
|
|
||||||
gulp.watch('less/*.less', ['less']);
|
|
||||||
gulp.watch('dist/css/*.css', ['minify-css']);
|
|
||||||
gulp.watch('js/*.js', ['minify-js']);
|
|
||||||
// Reloads the browser whenever HTML or JS files change
|
|
||||||
gulp.watch('pages/*.html', browserSync.reload);
|
|
||||||
gulp.watch('dist/js/*.js', browserSync.reload);
|
|
||||||
});
|
|
||||||
|
|
Loading…
Reference in a new issue