我正在使用 gulpjs,我想罗盘
但我收到以下错误
[gulp] gulp-notify: [Error running Gulp] Compass failed
[gulp] You must compile individual stylesheets from the project directory.
这是我的 config.rb
http_path = "/"
css_dir = "app/assets/src/stylesheets"
sass_dir = "app/assets/stylesheets"
images_dir = "app/assets/images"
javascripts_dir = "app/assets/javascript"
这是我的 gulp.js
.pipe($.compass({
config_file: './config.rb',
css: 'app/assets/src/stylesheets',
sass: 'app/assets/stylesheets',
require: [
'bourbon',
'singularitygs'
],bundle_exec:true}))