From 4397ea71c928650be51cab79b49ac223ba58c093 Mon Sep 17 00:00:00 2001 From: Daniel <50356015+danny007in@users.noreply.github.com> Date: Tue, 31 Jan 2023 23:21:38 +0530 Subject: [PATCH] Update gulpfile.js --- gulpfile.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 438e9927e..331fdea4b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -87,13 +87,6 @@ const scss = () => src(paths.src.scss + '/adminlte.scss', { sourcemaps: true }) .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 TS function isFixed(file) { // Has ESLint fixed the file contents? @@ -121,7 +114,7 @@ const tsCompile = () => format: 'umd', name: 'adminlte', sourcemap: true - })) + })).then(browserSync.stream()) const assets = () => src([paths.src.assets]) .pipe(dest(paths.temp.assets))