回答編集履歴
1
脱文
answer
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
gulp.task('css',()=>{
|
3
3
|
return gulp.src($regexPath)
|
4
4
|
.pipe(someprocess())
|
5
|
-
.dest($destPath);
|
5
|
+
.pipe(gulp.dest($destPath));
|
6
6
|
});
|
7
7
|
```
|
8
8
|
のようにプラグインに任せるより通常のgulpの関数を使って移動するのがいいみたいです。(someprocessはプラグインなどのファイル処理)
|