1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- const gulp = require('gulp'),
- sass = require('gulp-sass'),
- rename = require("gulp-rename"),
- concat = require("gulp-concat"),
- purgeCSS = require('gulp-purgecss'),
- sourcemaps = require('gulp-sourcemaps');
- purgeSourcemaps = require('gulp-purge-sourcemaps');
- browserSync = require('browser-sync').create();
- gulp.task('copy', async function() {
- gulp.src([
- './node_modules/bootstrap/dist/js/bootstrap.bundle.js',
- './node_modules/jasny-bootstrap/dist/js/jasny-bootstrap.js'
- ])
- .pipe(sourcemaps.init({loadMaps: true}))
- .pipe(purgeSourcemaps())
- .pipe(gulp.dest('./js/'));
- gulp.src([
- './node_modules/bootstrap/dist/css/bootstrap.css',
- './node_modules/bootstrap-icons/font/bootstrap-icons.css',
- './node_modules/jasny-bootstrap/dist/css/jasny-bootstrap.css'
- ])
- .pipe(sourcemaps.init({loadMaps: true}))
- .pipe(purgeSourcemaps())
- .pipe(gulp.dest('./css/'));
- gulp.src([
- './node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff',
- './node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff2'
- ])
- .pipe(gulp.dest('./css/fonts/'));
- console.log("files 📄 copied from npm pkgs ");
- });
- gulp.task('style', async function() {
- return gulp.src('./css/*.scss')
- .pipe(sass().on('error', sass.logError))
- .pipe(gulp.dest('./css/'))
- .pipe(browserSync.stream());
- });
- gulp.task('build', async function() {
- console.log("Assets built 🔧");
- });
- function mixin() {
- return gulp.src('./css/*.scss')
- .pipe(sass().on('error',sass.logError))
- .pipe(gulp.dest('./css/'))
- .pipe(browserSync.stream());
- }
- function run() {
- browserSync.init({
- injectChanges: true,
- proxy: 'https://macs.local/hp',
- host: 'a.macs',
- open: 'external',
- port: 8888,
- https: true
- });
- gulp.watch('./css/*.scss', mixin);
- gulp.watch('./style.css').on('change', browserSync.reload);
- gulp.watch('./css/*.css').on('change', browserSync.reload);
- gulp.watch('./js/**/*.js').on('change', browserSync.reload);
- }
- exports.mixin = mixin;
- exports.run = run;
|