我正在尝试grunt-contrib-compass
在我的watch
任务中包含对的调用,但它没有将任何已保存的更改注册到我的 .scss 文件中。 grunt compass
工作正常,并按grunt watch
预期记录对 *.php 的所有其他更改。一个人在这里做错了什么?
gruntfile.js:
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-compass');
grunt.initConfig({
compass: {
dev: {
options: {
config: 'config.rb'
} //options
} //dev
}, //compass
watch: {
options: { livereload: true },
scripts: {
files: ['/scripts/*.js'],
}, //scripts
sass: {
files: ['/_sass/*.scss'],
tasks: ['compass:dev']
}, //sass
html: {
files: ['*.php']
} //html
} //watch
}) //initConfig
grunt.registerTask('default', 'watch');
} //exports
只是为了好玩,我的 config.rb:
css_dir = '/css'
sass_dir = '/_sass'
output_style = :nested