我想要做的是将手写笔文件编译到手写笔文件所在的同一文件夹中。 像
files: { 'src/**/*.css':'src/**/*.styl']
即使我在documnet https://github.com/gruntjs/grunt-contrib-stylus
上尝试相同的配置options: {
relativeDest: 'out'
},
files: [{
src: ['src/components/*/*.styl'],
ext: '.css'
}]
并且失败了。
任何人都可以帮助我吗?
答案 0 :(得分:1)
试试这个:
files: [{
expand: true,
cwd: 'src/components',
src: ['**/*.styl'],
dest: 'src/components',
filter: 'isFile',
ext: '.css'
}]