gulp没有注意到sass / compass扩展导入/捆绑器

时间:2014-04-30 21:48:04

标签: sass bundler compass-sass gulp singularitygs

这是我第一次使用gulp。到目前为止,我一直使用bundle exec指南针来编译我的scss文件。

当我运行gulp时,我在命令提示符中收到以下错误:

Syntax error: file to import not found or unreadable: singularitygs

load paths:  ... .. on line 14 of C:\<my path>\scss\partials\0_global\_base.scss

events.js:72 throw er; /unhandled 'error' event

<-[36mgulp-ruby-sass<-[39m] Error in plugin '<-[36mgulp-ruby-sass<-[39m':
.. 
..
at ChildProcess. <anonamous> c:\<my path>\node_modules\gulp-ruby-by-sass\index.js:100:25)
at ChlidProcess.EventEmitter.emit(events.js:98:17)
at maybeClose(child_process.js:743:16)
at Process.ChildProcess._handle.onexit (child_process.js:810:5)

在我的_base.scss文件中,它看到了:

@import 'singularitygs';
@import 'toolkit';
@import 'sassy-buttons';

所有这些扩展都在我的config.rb文件和我的gemfile中声明,并在我运行bundle exec指南针时正常工作

如果我注释掉singularitygs,如果我注释掉工具包,我会得到相同的工具包和sassy按钮错误。如果我对它们进行评论,它会引发错误,因为它没有注意到工具包使用的变量。

我的gulpfile.js包含以下内容:

var gulp = require('gulp'),
    sass = require('gulp-ruby-sass'),
    autoprefixer = require('gulp-autoprefixer'),
    minifycss = require('gulp-minify-css'),
    jshint = require('gulp-jshint'),
    uglify = require('gulp-uglify'),
    imagemin = require('gulp-imagemin'),
    rename = require('gulp-rename'),
    clean = require('gulp-clean'),
    concat = require('gulp-concat'),
    notify = require('gulp-notify'),
    cache = require('gulp-cache'),
    livereload = require('gulp-livereload')
    compass = require('gulp-compass');

gulp.task('styles',function(){
    return gulp.src('scss/*.scss')
        .pipe(sass({style: 'expanded', bundleExec:true}))
        .pipe(compass({config_file: 'config.rb', css:'stylesheets', sass:'scss', font:'stylesheets/fonts', require: ['singularitygs', 'toolkit', 'sassy-buttons'], bundle_exec:true}))
        .pipe(autoprefixer('last 2 version', 'safari 5', 'ie 8', 'ie 9', 'opera 12.1', 'ios 6', 'android 4'))        
        .pipe(gulp.dest('dist/assets/css'))
        .pipe(rename({suffix: '.min'}))
        .pipe(minifycss())
        .pipe(gulp.dest('dist/assets/css'))
        .pipe(notify({message: 'Styles task complete'}));
});

我已经在这里挣扎了4个多小时,并在其他地方寻找可能没有运气的东西。我肯定不是第一个没有捆绑依赖关系的人不能使用gulp。

我所有的宝石都是最新的,当我用bundle exec罗盘手表编译时一切正常。我还尝试重新安装几个不同的gulp包,如:

npm install gulp-ruby-sass
npm install gulp-compass

我还使用WAMP和Windows 8,如果这很重要的话。

感谢您的时间。

2 个答案:

答案 0 :(得分:0)

请尝试评论通知行。

ref https://github.com/appleboy/gulp-compass/issues/40

答案 1 :(得分:0)

由于某种原因,gulp-ruby-sass搞砸了。似乎更多的人会在我面前遇到这个问题。

我评论了sass = require('gulp-ruby-sass'),.pipe(sass({style: 'expanded', bundleExec:true})),但它确实有效。