我正在尝试通过我的 Gruntfile 安装 'modular-scale' ( https://github.com/Team-Sass/modular-scale ) 但我无法让它工作。
请注意,我不使用 config.rb,我想通过 grunt-contrib-compass 要求使用 Grunt 的插件。
我认为这就像将它添加到我的 Gruntfile 一样简单(在grunt.initConfig({
etc 之后):
compass: {
dist: {
options: {
require: ['modular-scale'], // This line here
sassDir: 'setup',
cssDir: 'css'
}
}
},
watch: {
css: {
files: '**/*.scss',
tasks: ['compass']
}
}
监视任务绝对没问题。问题是,如果我使用作为“模块化规模”插件一部分的 SASS 变量之一,我会抛出一个错误,表明实际上并不需要“模块化规模”。
我在这里错过了什么吗?