作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个文件结构复杂的元素,其中有一些模块有自己的 css/less/sass 文件夹。
我想让 grunt 监视所有这些文件,并通过用 css 替换最后一个 lass/sass 文件夹将它们编译成目标文件。编译文件示例
root/less/style.less -> root/css/style.css
或
root/modules/mymodule/sass/file.sass -> root/modules/mymodule/css/file.css
我的 gruntfile 现在是:
less: {
development: {
options: {
paths: ["**/*"]
},
//files: {"css/main.css": "less/main.less"},
files: [
{
expand: true,
cwd: "**/*",
src: ["**/*.less"],
dest: "",
ext: ".css"
}
]
}
// ,
// production: {
// options: {
// paths: ["assets/css"],
// cleancss: true
// },
// files: {"path/to/result.css": "path/to/source.less"}
// }
},
watch: {
styles: {
files: ['less/**/*.less'], // which files to watch
tasks: ['less'],
options: {
nospawn: true
}
}
}
});
但它不起作用。
最佳答案
我认为这是您的启动 (cwd
) 和目标 (dest
) 路径不正确。试试这个:
less: {
development: {
files: [
{
expand: true,
cwd: "root", // The startup directory
src: ["**/*.less"],
dest: "root", // Destination
ext: ".css"
}
]
}
},
关于css - 如何用 grunt 递归编译 less/sass 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33675456/
我是一名优秀的程序员,十分优秀!