Tag: grunt contrib sass

NPM未能转换SASS

我想通过grunt.js和npm将我的style.scss (其中有一些其他文件链接到它,如_variable.scss , _mixins.scss )文件转换为CSS。 但是我得到这个错误: Error: File to import not found or unreadable: compass. on line 5 of sass/style.scss 1: // typorgraphy 2: @import "base/typography"; 3: 4: // compass 5: @import "compass"; 6: 7: // import files 8: @import "base/import"; 9: 10: // mixins 这是我的gruntfile.js : module.exports = function(grunt) { // Project configuration. grunt.initConfig({ […]