123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- /* eslint-env node */
- const autoprefix = require('autoprefixer')
- const browserSync = require('browser-sync').create()
- const del = require('del')
- const { src, dest, lastRun, watch, series } = require('gulp')
- const cleanCss = require('gulp-clean-css')
- const eslint = require('gulp-eslint-new')
- const fileinclude = require('gulp-file-include')
- const gulpIf = require('gulp-if')
- const npmDist = require('gulp-npm-dist')
- const postcss = require('gulp-postcss')
- const rename = require('gulp-rename')
- const sass = require('gulp-sass')(require('sass'))
- const gulpStylelint = require('gulp-stylelint')
- const rollup = require('rollup')
- const rollupTypescript = require('@rollup/plugin-typescript')
- const rtlcss = require('rtlcss')
- const pkg = require('./package')
- const year = new Date().getFullYear()
- const banner = `/*!
- * AdminLTE v${pkg.version} (${pkg.homepage})
- * Copyright 2014-${year} ${pkg.author}
- * Licensed under MIT (https://github.com/ColorlibHQ/AdminLTE/blob/master/LICENSE)
- */`
- // Define paths
- const paths = {
- dist: {
- base: './dist/',
- css: './dist/css',
- js: './dist/js',
- html: './dist/pages',
- assets: './dist/assets',
- vendor: './dist/vendor'
- },
- src: {
- base: './src/',
- html: './src/pages/**/*.html',
- assets: './src/assets/**/*.*',
- partials: './src/partials/**/*.html',
- scss: './src/scss',
- ts: './src/ts',
- nodeModules: './node_modules/'
- },
- temp: {
- base: './.temp/',
- css: './.temp/css',
- js: './.temp/js',
- html: './.temp/pages',
- assets: './.temp/assets',
- vendor: './.temp/vendor'
- }
- }
- const sassOptions = {
- outputStyle: 'expanded',
- includePaths: ['./node_modules/']
- }
- const postcssOptions = [
- autoprefix({ cascade: false })
- ]
- const postcssRtlOptions = [
- autoprefix({ cascade: false }),
- rtlcss({})
- ]
- // From here Dev mode will Start
- // Compile SCSS
- const scss = () => src(paths.src.scss + '/adminlte.scss', { sourcemaps: true })
- .pipe(sass(sassOptions).on('error', sass.logError))
- .pipe(postcss(postcssOptions))
- .pipe(dest(paths.temp.css, { sourcemaps: '.' }))
- .pipe(browserSync.stream())
- // Compile SCSS Dark
- const scssDark = () => src(paths.src.scss + '/dark/adminlte-dark-addon.scss', { sourcemaps: true })
- .pipe(sass(sassOptions).on('error', sass.logError))
- .pipe(postcss(postcssOptions))
- .pipe(dest(paths.temp.css + '/dark', { sourcemaps: '.' }))
- .pipe(browserSync.stream())
- // Lint SCSS
- const lintScss = () => src([paths.src.scss + '/**/*.scss'], { since: lastRun(lintScss) })
- .pipe(gulpStylelint({
- failAfterError: false,
- reporters: [
- { formatter: 'string', console: true }
- ]
- }))
- const tsCompile = () =>
- rollup.rollup({
- input: paths.src.ts + '/adminlte.ts',
- output: {
- banner
- },
- plugins: [
- rollupTypescript()
- ]
- }).then(bundle => bundle.write({
- file: paths.temp.js + '/adminlte.js',
- format: 'umd',
- name: 'adminlte',
- sourcemap: true
- }))
- // Lint TS
- function isFixed(file) {
- // Has ESLint fixed the file contents?
- return file.eslint !== null && file.eslint.fixed
- }
- const lintTs = () => src([paths.src.ts + '/**/*.ts'], { since: lastRun(lintTs) })
- .pipe(eslint({ fix: true }))
- .pipe(eslint.format())
- .pipe(gulpIf(isFixed, dest(paths.src.ts)))
- .pipe(eslint.failAfterError())
- const index = () => src([paths.src.base + '*.html'])
- .pipe(fileinclude({
- prefix: '@@',
- basepath: './src/partials/',
- context: {
- environment: 'development'
- }
- }))
- .pipe(dest(paths.temp.base))
- .pipe(browserSync.stream())
- const html = () => src([paths.src.html])
- .pipe(fileinclude({
- prefix: '@@',
- basepath: './src/partials/',
- context: {
- environment: 'development'
- }
- }))
- .pipe(dest(paths.temp.html))
- .pipe(browserSync.stream())
- const assets = () => src([paths.src.assets])
- .pipe(dest(paths.temp.assets))
- .pipe(browserSync.stream())
- const vendor = () => src(npmDist({ copyUnminified: true }), { base: paths.src.nodeModules })
- .pipe(dest(paths.temp.vendor))
- const serve = () => {
- browserSync.init({
- server: paths.temp.base
- })
- watch([paths.src.scss], series(lintScss))
- watch([paths.src.scss + '/**/*.scss', '!' + paths.src.scss + '/bootstrap-dark/**/*.scss', '!' + paths.src.scss + '/dark/**/*.scss'], series(scss))
- watch([paths.src.scss + '/bootstrap-dark/', paths.src.scss + '/dark/'], series(scssDark))
- watch([paths.src.ts], series(lintTs, tsCompile))
- watch([paths.src.html, paths.src.base + '*.html', paths.src.partials], series(html, index))
- watch([paths.src.assets], series(assets))
- }
- // From here Dist will Start
- // Minify CSS
- const minifyDistCss = () => src([
- paths.dist.css + '/**/*.css'
- ], {
- base: paths.dist.css,
- sourcemaps: true
- })
- .pipe(cleanCss({ format: { breakWith: 'lf' } }))
- .pipe(rename({ suffix: '.min' }))
- .pipe(dest(paths.dist.css, { sourcemaps: '.' }))
- // Minify JS
- // Need to add terser
- const minifyDistJs = () =>
- rollup.rollup({
- input: paths.src.ts + '/adminlte.ts',
- output: {
- banner
- },
- plugins: [
- rollupTypescript()
- ]
- }).then(bundle => bundle.write({
- file: paths.dist.js + '/adminlte.js',
- format: 'umd',
- name: 'adminlte',
- sourcemap: true
- }))
- // Copy assets
- const copyDistAssets = () => src(paths.src.assets)
- .pipe(dest(paths.dist.assets))
- // Clean
- const cleanDist = () => del([paths.dist.base])
- // Compile and copy all scss/css
- const copyDistCssAll = () => src([paths.src.scss + '/**/*.scss'], {
- base: paths.src.scss,
- sourcemaps: true
- })
- .pipe(sass(sassOptions).on('error', sass.logError))
- .pipe(postcss(postcssOptions))
- .pipe(dest(paths.dist.css, { sourcemaps: '.' }))
- const copyDistCssRtl = () => src(paths.dist.css + '/*.css', { sourcemaps: true })
- .pipe(postcss(postcssRtlOptions))
- .pipe(rename({ suffix: '.rtl' }))
- .pipe(dest(paths.dist.css + '/rtl', { sourcemaps: '.' }))
- // Compile and copy ts/js
- const copyDistJs = () =>
- rollup.rollup({
- input: paths.src.ts + '/adminlte.ts',
- output: {
- banner
- },
- plugins: [
- rollupTypescript()
- ]
- }).then(bundle => bundle.write({
- file: paths.dist.js + '/adminlte.js',
- format: 'umd',
- name: 'adminlte',
- sourcemap: true
- }))
- // Copy Html
- const copyDistHtml = () => src([paths.src.html])
- .pipe(fileinclude({
- prefix: '@@',
- basepath: './src/partials/',
- context: {
- environment: 'production'
- }
- }))
- .pipe(dest(paths.dist.html))
- // Copy index
- const copyDistHtmlIndex = () => src([paths.src.base + '*.html'])
- .pipe(fileinclude({
- prefix: '@@',
- basepath: './src/partials/',
- context: {
- environment: 'production'
- }
- }))
- .pipe(dest(paths.dist.base))
- // Copy node_modules to vendor
- const copyDistVendor = () => src(npmDist({ copyUnminified: true }), { base: paths.src.nodeModules })
- .pipe(dest(paths.dist.vendor))
- // To Dist Before release
- exports.build = series(lintScss, lintTs, cleanDist, copyDistCssAll, copyDistCssRtl, minifyDistCss, copyDistJs, minifyDistJs, copyDistHtml, copyDistHtmlIndex, copyDistAssets, copyDistVendor)
- // Default - Only for light mode AdminLTE
- exports.default = series(scss, scssDark, tsCompile, html, index, assets, vendor, serve)
|