0
私はscss
ディレクトリ内のファイルの束を持っている:ディレクトリ内のすべてのファイルをコピーし、すべてのSCSSファイルをコンパイルし、他のファイルはそのままにします。
scss/
file.scss
anotherfile.scss
image.jpeg
dir/
other.ttf
私はgulp
はこれをコンパイルしたい:
css/
file.css
anotherfile.css
image.jpeg
dir/
other.ttf
現在のところ、それはすべての.css
ファイルをコンパイルし、それは任意のをコピーしていません他のファイルの
これは私が現在持っているものです。
const path2 = require('path');
...
gulp.task('sass', function() {
gulp.src("./scss/*.scss")
.pipe(sass({outputStyle: 'compressed'}))
.on('error', onError)
.pipe(rename (function (path) {
path.dirname = path.dirname.replace(path2.sep + "scss", path2.sep + "css");
path.extname = ".css";
}))
.pipe(gulp.dest('./'));
});
どうすればいいですか?
ありがとうございました。