是否可以在 gulp-ruby-sass 中将 scss 文件转换为扩展和压缩的 css 文件?
Is it possible to have a scss file converted to an expanded and a compressed css file in gulp-ruby-sass?
是否可以将 scss 文件转换为扩展和压缩的 css 文件?我想要的是一个保存为 boostrap.css 和 bootstrap.min.css
的 bootstrap.scss 文件
我目前有以下代码可以将 scss 文件转换为具有相同名称的压缩 css 文件。
var config = {
sassPath: './static/scss',
bowerDir: './static/bower_components'
};
gulp.task('sass', function(){
return sass(config.sassPath, {style: 'compressed', loadPath: [
'./static/scss',
config.bowerDir + '/bootstrap-sass/assets/stylesheets'
]})
.on('error', function(err){
console.error('Error!', err.message);
})
.pipe(gulp.dest('./static/css'));
});
我也在用 gulp-ruby-sass
| https://whosebug.com/tags/gulp-ruby-sass/info
gulp.task('app-css', function() {
return sass('bower_components/sass-smacss/sass/dashboard.scss', {
// noCache: true,
style: 'compressed'
})
.pipe(sourcemaps.init())
.on('error', errorlog)
.pipe(sourcemaps.write('./maps'))
.pipe(gulp.dest('app/assets/css/'))
});
只需将上面的compressed
替换为expanded
即可。
是否可以将 scss 文件转换为扩展和压缩的 css 文件?我想要的是一个保存为 boostrap.css 和 bootstrap.min.css
的 bootstrap.scss 文件我目前有以下代码可以将 scss 文件转换为具有相同名称的压缩 css 文件。
var config = {
sassPath: './static/scss',
bowerDir: './static/bower_components'
};
gulp.task('sass', function(){
return sass(config.sassPath, {style: 'compressed', loadPath: [
'./static/scss',
config.bowerDir + '/bootstrap-sass/assets/stylesheets'
]})
.on('error', function(err){
console.error('Error!', err.message);
})
.pipe(gulp.dest('./static/css'));
});
我也在用 gulp-ruby-sass
| https://whosebug.com/tags/gulp-ruby-sass/info
gulp.task('app-css', function() {
return sass('bower_components/sass-smacss/sass/dashboard.scss', {
// noCache: true,
style: 'compressed'
})
.pipe(sourcemaps.init())
.on('error', errorlog)
.pipe(sourcemaps.write('./maps'))
.pipe(gulp.dest('app/assets/css/'))
});
只需将上面的compressed
替换为expanded
即可。