我正在尝试使用gulp-scss转换scss文件。
当我运行任务时,它似乎并没有接收到导入。

gulpfile.js

gulp.src('./app/css/app.scss', {base: './'})
    .pipe(sass({includePaths:'./node_modules/foundation-sites/scss'}))
    .pipe(gulp.dest('./web'));


app.scss

/*my custom styles*/
@import 'my-custom-styles';

// Sass utilities
@import 'util/util';

// Global variables and styles
@import 'global';

// Components
@import 'grid/grid';
etc.....


app.css

/*my custom styles*/
body{background:black;}


我期望app.css充满基础代码。
有任何想法吗?

编辑:即使我尝试添加错误处理,我也没有任何错误。
安慰

[00:52:07] Using gulpfile ~/dev/rise-client/gulpfile.js[00:52:07] Starting 'scss'...[00:52:07] Finished 'scss' after 9.28 ms

最佳答案

您的来源中可能有错误,请尝试:

.pipe(sass(/* config */))
.on('error', function(err) { console.log(err); }))

关于css - gulp-sass导入静默失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37625713/

10-15 09:01