Skip to content

Commit b6601b3

Browse files
committed
Removed unused task
1 parent f2c0227 commit b6601b3

File tree

1 file changed

+2
-23
lines changed

1 file changed

+2
-23
lines changed

gulpfile.js

+2-23
Original file line numberDiff line numberDiff line change
@@ -23,29 +23,14 @@ const watchHTML = () =>
2323
const bundleCSS = () =>
2424
gulp
2525
.src("src/*.css")
26-
.pipe(concat("custom-library.min.css"))
26+
.pipe(concat("fluent.min.css"))
2727
.pipe(cssMinifier())
2828
.pipe(gulp.dest("build/"))
2929
.pipe(connect.reload());
3030

3131
const watchCSS = () =>
3232
gulp.watch("src/*.css", { ignoreInitial: false }, bundleCSS);
3333

34-
// Module CSS: examples/e-commerce/*.css
35-
const bundleModuleCSS = () =>
36-
gulp
37-
.src("examples/e-commerce/*.css")
38-
.pipe(cssMinifier())
39-
.pipe(gulp.dest("build/"))
40-
.pipe(connect.reload());
41-
42-
const watchModuleCSS = () =>
43-
gulp.watch(
44-
"examples/e-commerce/*.css",
45-
{ ignoreInitial: false },
46-
bundleModuleCSS
47-
);
48-
4934
const bundleImages = () =>
5035
gulp
5136
.src("examples/e-commerce/images/*.png")
@@ -61,10 +46,4 @@ const connectServer = () =>
6146
export const compressDemoImages = () =>
6247
gulp.src("demo/*.png").pipe(imageMinifier()).pipe(gulp.dest("demo/"));
6348

64-
export default gulp.parallel(
65-
watchHTML,
66-
watchCSS,
67-
watchModuleCSS,
68-
bundleImages,
69-
connectServer
70-
);
49+
export default gulp.parallel(watchHTML, watchCSS, bundleImages, connectServer);

0 commit comments

Comments
 (0)