这是我的gruntfile中的sass声明。
sass: {
dist: {
options: {
implementation: 'node-sass',
style: 'expanded',
noCache: true
},
files: {
'dist/css/jk.css' : 'src/styles/jk.scss'
}
}
},
这是运行grunt -v时的输出。
Running "sass:dist" (sass) task
Verifying property sass.dist exists in config...OK
Files: src/styles/jk.scss -> dist/css/jk.css
Options: precision=10, implementation="node-sass", style="expanded", noCache
undefined
Fatal error: The "original" argument must be of type function
似乎sass正在执行,并且正在正确发送我的文件路径,但是由于某种原因返回了undefined。
我能够通过命令行手动编译sass文件,而没有任何问题。
这是我package.json中的一些版本信息
"grunt": "^1.0.3"
"grunt-sass": "^3.0.1"
"node-sass": "^4.9.3"