updating to 4.0
New design with breaking changes, gulp 4, all dependencies updated, dev environment changed, and many more changes
This commit is contained in:
244
gulpfile.js
244
gulpfile.js
@@ -1,123 +1,147 @@
|
||||
var gulp = require('gulp');
|
||||
var less = require('gulp-less');
|
||||
var browserSync = require('browser-sync').create();
|
||||
var header = require('gulp-header');
|
||||
var cleanCSS = require('gulp-clean-css');
|
||||
var rename = require("gulp-rename");
|
||||
var uglify = require('gulp-uglify');
|
||||
var pkg = require('./package.json');
|
||||
// Load plugins
|
||||
const autoprefixer = require("gulp-autoprefixer");
|
||||
const browsersync = require("browser-sync").create();
|
||||
const cleanCSS = require("gulp-clean-css");
|
||||
const gulp = require("gulp");
|
||||
const header = require("gulp-header");
|
||||
const plumber = require("gulp-plumber");
|
||||
const rename = require("gulp-rename");
|
||||
const sass = require("gulp-sass");
|
||||
const uglify = require("gulp-uglify");
|
||||
const pkg = require('./package.json');
|
||||
|
||||
// Set the banner content
|
||||
var banner = ['/*!\n',
|
||||
' * Start Bootstrap - <%= pkg.title %> v<%= pkg.version %> (<%= pkg.homepage %>)\n',
|
||||
' * Copyright 2013-' + (new Date()).getFullYear(), ' <%= pkg.author %>\n',
|
||||
' * Licensed under <%= pkg.license.type %> (<%= pkg.license.url %>)\n',
|
||||
' */\n',
|
||||
''
|
||||
const banner = ['/*!\n',
|
||||
' * Start Bootstrap - <%= pkg.title %> v<%= pkg.version %> (<%= pkg.homepage %>)\n',
|
||||
' * Copyright 2013-' + (new Date()).getFullYear(), ' <%= pkg.author %>\n',
|
||||
' * Licensed under <%= pkg.license %> (https://github.com/BlackrockDigital/<%= pkg.name %>/blob/master/LICENSE)\n',
|
||||
' */\n',
|
||||
'\n'
|
||||
].join('');
|
||||
|
||||
// Compile LESS files from /less into /css
|
||||
gulp.task('less', function() {
|
||||
return gulp.src('less/sb-admin-2.less')
|
||||
.pipe(less())
|
||||
.pipe(header(banner, { pkg: pkg }))
|
||||
.pipe(gulp.dest('dist/css'))
|
||||
.pipe(browserSync.reload({
|
||||
stream: true
|
||||
}))
|
||||
// Copy third party libraries from /node_modules into /vendor
|
||||
gulp.task('vendor', function(cb) {
|
||||
|
||||
// Bootstrap JS
|
||||
gulp.src([
|
||||
'./node_modules/bootstrap/dist/js/*',
|
||||
])
|
||||
.pipe(gulp.dest('./vendor/bootstrap/js'))
|
||||
|
||||
// Bootstrap SCSS
|
||||
gulp.src([
|
||||
'./node_modules/bootstrap/scss/**/*',
|
||||
])
|
||||
.pipe(gulp.dest('./vendor/bootstrap/scss'))
|
||||
|
||||
// ChartJS
|
||||
gulp.src([
|
||||
'./node_modules/chart.js/dist/*.js'
|
||||
])
|
||||
.pipe(gulp.dest('./vendor/chart.js'))
|
||||
|
||||
// DataTables
|
||||
gulp.src([
|
||||
'./node_modules/datatables.net/js/*.js',
|
||||
'./node_modules/datatables.net-bs4/js/*.js',
|
||||
'./node_modules/datatables.net-bs4/css/*.css'
|
||||
])
|
||||
.pipe(gulp.dest('./vendor/datatables/'))
|
||||
|
||||
// Font Awesome
|
||||
gulp.src([
|
||||
'./node_modules/@fortawesome/**/*',
|
||||
])
|
||||
.pipe(gulp.dest('./vendor'))
|
||||
|
||||
// jQuery
|
||||
gulp.src([
|
||||
'./node_modules/jquery/dist/*',
|
||||
'!./node_modules/jquery/dist/core.js'
|
||||
])
|
||||
.pipe(gulp.dest('./vendor/jquery'))
|
||||
|
||||
// jQuery Easing
|
||||
gulp.src([
|
||||
'./node_modules/jquery.easing/*.js'
|
||||
])
|
||||
.pipe(gulp.dest('./vendor/jquery-easing'))
|
||||
|
||||
cb();
|
||||
|
||||
});
|
||||
|
||||
// Minify compiled CSS
|
||||
gulp.task('minify-css', ['less'], function() {
|
||||
return gulp.src('dist/css/sb-admin-2.css')
|
||||
.pipe(cleanCSS({ compatibility: 'ie8' }))
|
||||
.pipe(rename({ suffix: '.min' }))
|
||||
.pipe(gulp.dest('dist/css'))
|
||||
.pipe(browserSync.reload({
|
||||
stream: true
|
||||
}))
|
||||
});
|
||||
// CSS task
|
||||
function css() {
|
||||
return gulp
|
||||
.src("./scss/*.scss")
|
||||
.pipe(plumber())
|
||||
.pipe(sass({
|
||||
outputStyle: "expanded"
|
||||
}))
|
||||
.on("error", sass.logError)
|
||||
.pipe(autoprefixer({
|
||||
browsers: ['last 2 versions'],
|
||||
cascade: false
|
||||
}))
|
||||
.pipe(header(banner, {
|
||||
pkg: pkg
|
||||
}))
|
||||
.pipe(gulp.dest("./css"))
|
||||
.pipe(rename({
|
||||
suffix: ".min"
|
||||
}))
|
||||
.pipe(cleanCSS())
|
||||
.pipe(gulp.dest("./css"))
|
||||
.pipe(browsersync.stream());
|
||||
}
|
||||
|
||||
// Copy JS to dist
|
||||
gulp.task('js', function() {
|
||||
return gulp.src(['js/sb-admin-2.js'])
|
||||
.pipe(header(banner, { pkg: pkg }))
|
||||
.pipe(gulp.dest('dist/js'))
|
||||
.pipe(browserSync.reload({
|
||||
stream: true
|
||||
}))
|
||||
})
|
||||
// JS task
|
||||
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());
|
||||
}
|
||||
|
||||
// Minify JS
|
||||
gulp.task('minify-js', ['js'], function() {
|
||||
return gulp.src('js/sb-admin-2.js')
|
||||
.pipe(uglify())
|
||||
.pipe(header(banner, { pkg: pkg }))
|
||||
.pipe(rename({ suffix: '.min' }))
|
||||
.pipe(gulp.dest('dist/js'))
|
||||
.pipe(browserSync.reload({
|
||||
stream: true
|
||||
}))
|
||||
});
|
||||
// Tasks
|
||||
gulp.task("css", css);
|
||||
gulp.task("js", js);
|
||||
|
||||
// Copy vendor libraries from /bower_components into /vendor
|
||||
gulp.task('copy', function() {
|
||||
gulp.src(['bower_components/bootstrap/dist/**/*', '!**/npm.js', '!**/bootstrap-theme.*', '!**/*.map'])
|
||||
.pipe(gulp.dest('vendor/bootstrap'))
|
||||
// BrowserSync
|
||||
function browserSync(done) {
|
||||
browsersync.init({
|
||||
server: {
|
||||
baseDir: "./"
|
||||
}
|
||||
});
|
||||
done();
|
||||
}
|
||||
|
||||
gulp.src(['bower_components/bootstrap-social/*.css', 'bower_components/bootstrap-social/*.less', 'bower_components/bootstrap-social/*.scss'])
|
||||
.pipe(gulp.dest('vendor/bootstrap-social'))
|
||||
// BrowserSync Reload
|
||||
function browserSyncReload(done) {
|
||||
browsersync.reload();
|
||||
done();
|
||||
}
|
||||
|
||||
gulp.src(['bower_components/datatables/media/**/*'])
|
||||
.pipe(gulp.dest('vendor/datatables'))
|
||||
// Watch files
|
||||
function watchFiles() {
|
||||
gulp.watch("./scss/**/*", css);
|
||||
gulp.watch(["./js/**/*.js", "!./js/*.min.js"], js);
|
||||
gulp.watch("./**/*.html", browserSyncReload);
|
||||
}
|
||||
|
||||
gulp.src(['bower_components/datatables-plugins/integration/bootstrap/3/*'])
|
||||
.pipe(gulp.dest('vendor/datatables-plugins'))
|
||||
gulp.task("default", gulp.parallel(css, js));
|
||||
|
||||
gulp.src(['bower_components/datatables-responsive/css/*', 'bower_components/datatables-responsive/js/*'])
|
||||
.pipe(gulp.dest('vendor/datatables-responsive'))
|
||||
|
||||
gulp.src(['bower_components/flot/*.js'])
|
||||
.pipe(gulp.dest('vendor/flot'))
|
||||
|
||||
gulp.src(['bower_components/flot.tooltip/js/*.js'])
|
||||
.pipe(gulp.dest('vendor/flot-tooltip'))
|
||||
|
||||
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);
|
||||
});
|
||||
// watch
|
||||
gulp.task("dev", gulp.parallel(watchFiles, browserSync));
|
||||
|
||||
Reference in New Issue
Block a user