如何使用grunt stylus将每个文件编译到原文件夹?
How to use grunt stylus to compile each file to the original folder?
我想做的是将手写笔文件编译到 .
喜欢
files: { 'src/**/*.css':'src/**/*.styl']
我什至在 documnet 上尝试过相同的配置 https://github.com/gruntjs/grunt-contrib-stylus
options: {
relativeDest: 'out'
},
files: [{
src: ['src/components/*/*.styl'],
ext: '.css'
}]
失败了。
有人可以帮助我吗?
试试这个:
files: [{
expand: true,
cwd: 'src/components',
src: ['**/*.styl'],
dest: 'src/components',
filter: 'isFile',
ext: '.css'
}]
我想做的是将手写笔文件编译到 . 喜欢
files: { 'src/**/*.css':'src/**/*.styl']
我什至在 documnet 上尝试过相同的配置 https://github.com/gruntjs/grunt-contrib-stylus
options: {
relativeDest: 'out'
},
files: [{
src: ['src/components/*/*.styl'],
ext: '.css'
}]
失败了。
有人可以帮助我吗?
试试这个:
files: [{
expand: true,
cwd: 'src/components',
src: ['**/*.styl'],
dest: 'src/components',
filter: 'isFile',
ext: '.css'
}]