我正在尝试返回位于不同文件夹中的扩展名为 .css 和 .styl 的文件,并在 Gulp 任务中使用它们,但没有取得多大成功。我想知道我在这里做错了什么?这是我此时的代码:
var pattrn = /(styl|css)$/g;
var path1 = './dev/**/';
var paths = {
dev_styles: path1.match( pattrn ),
build: './build'
};
gulp.task( 'styles', function() {
var processors = [
csswring,
autoprefixer( { browsers: [ 'last 2 version' ] } )
];
return gulp
.src( paths.dev_styles )
.pipe( plugins.postcss( processors ) )
.pipe( plugins.rename( { suffix: '.min'} ) )
.pipe( gulp.dest( paths.build ) );
});
我收到此错误:
Error: Invalid glob argument: null