gpt4 book ai didi

javascript - 用 gulp 观看所有文件?

转载 作者:行者123 更新时间:2023-12-01 02:15:01 24 4
gpt4 key购买 nike

目前我的文件夹结构如下。

  • CSS
    • scss
      • _icon.scss
      • _admin.scss
    • main.scss
    • 个人.scss
  • 模块
    • 指令
      • map
        • map .html
        • map .scss
        • map .js

我有以下的 gulp sass

gulp.task("sass", function() {
return gulp.src('css/main.scss') // location of main scss file name
.pipe(sourcemaps.init()) //TODO: important, comment out this line in staging and production
//.pipe(rename({suffix: '.min'})) // include this to rename the file to fileName.min.css
//.pipe(minifycss()) // include this to minify the file
.pipe(sass.sync().on('error', sass.logError))
.pipe(sourcemaps.write()) //TODO: important, comment out this line in staging and production
.pipe(concat("main.min.css"))
.pipe(gulp.dest('./css'));
});

我想在发生任何更改时查看根目录中扩展名为 .scss 的所有文件。

最佳答案

如果你的“sass”任务编译正确,那么你只需要一个监视任务来自动运行该任务。

gulp.task('watch', function() {
gulp.watch(['./**/*.scss'], ['sass'])
});

通过将其添加到“默认”任务中,使其在运行 gulp 时自动运行....

gulp.task('default', ['sass', 'watch'])

https://gulpjs.com/

关于javascript - 用 gulp 观看所有文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49535816/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com