Questions tagged [gulp-compass]

gulp-compass is a gulp plugin that can compile Compass files.

gulp-compass is a gulp plugin that can compile Compass files. It requires compass Ruby gem in order to execute compilation.

22 questions
3
votes
1 answer

Susy and Breakpoint in Gulp-compass: Error: Cannot load such file --susy

I encountered an issue when I try to use Susy and Breakpoint to my Gulp-compass. Is there anything I've missed in this code? var compass = require('gulp-compass'), autoprefixer = require('gulp-autoprefixer'); gulp.task('compass',…
SimplifyJS
  • 518
  • 1
  • 6
  • 12
2
votes
1 answer

gulp-compass asking for Ruby and Compass in PATH when they are already there

I'm trying to get gulp-compass to work on my Debian linux but am getting an error message stating that Ruby and Compass must be in the path. I am a bit of a beginner when it comes to Gulp so is probably me being stupid. The following is the exact…
1
vote
1 answer

Angular 2 seed - how to enable compass support in sass file

I use this seed project for my Angular 2 app. My goal is to use compass mixins and functions in all sass files. In this moment when i try to use @import 'compass' it simply can not make import. I had instaled newest SASS and COMPASS gem. I think to…
MichalObi
  • 133
  • 1
  • 1
  • 11
1
vote
1 answer

"Error: spawn /usr/bin/compass ENOENT" when using gulp-compass

I'm attempting to run the following Gulp task to compile Sass files, using the plugin, gulp-compass on OS X Yosemite 10.5.5. var path = require("path"); var gulp = require("gulp"); var compass =…
Adam Prax
  • 6,413
  • 3
  • 30
  • 31
1
vote
0 answers

gulp.dest failed overriding existent files

I have this simple gulp task to process .scss files: var gulp = require('gulp'), compass = require('gulp-compass'), autoprefixer = require('gulp-autoprefixer'), plumber = require('gulp-plumber'), browserSync =…
Hao Chang
  • 355
  • 2
  • 3
  • 12
1
vote
1 answer

Does gulp-autoprefixer work with gulp-compass?

If I compile the scss with gulp-ruby-sass, gulp-autoprefixer works, but if a compile de scss with gulp-compass autoprefixer doen't work. This is the code: gulp = require('gulp'), sass = require('gulp-ruby-sass'), livereload =…
1
vote
3 answers

Compass removes semicolon when compressing SCSS files, causing issue of CSS importing

It is my first time trying out Compass and encountered an issue around how Compass compressed SCSS files. I had a simple .scss file with the following code: @import…
Hao Chang
  • 355
  • 2
  • 3
  • 12
1
vote
0 answers

SCSS Lint plugin for PHPStorm triggers errors in gulp-compass task

The Setup: Using scss-lint plugin for IntelliJ-based IDEs (PHPStorm) http://plugins.jetbrains.com/plugin/7530?pr=phpStorm A gulp-compass task, part of a larger Gulp build process, that watches my sass (scss)…
Herve
  • 131
  • 1
  • 8
0
votes
0 answers

Gulp compass compilation issue with multiple sass locations

I'm trying to pass in an array of directories containing Sass files to be compiled into a single CSS file. The array of directories looks like the correct approach but I'm getting an error message as follows: Individual stylesheets must be in the…
tomphilps
  • 159
  • 1
  • 3
  • 10
0
votes
1 answer

gulp compass throws error

I am trying to use gulp-compass plugin to convert and minify my scss into css. However I am getting below error: $ gulp compass [02:14:32] Using gulpfile C:\Users\dell\Desktop\sassy - copy\gulpfile.js [02:14:32] Starting 'compass'... [02:14:32]…
Aakash Thakur
  • 3,837
  • 10
  • 33
  • 64
0
votes
1 answer

kernel_require.rb: cannot load such file

I used gulp to build a html project. For some css staff,I used compass to build. I have task as follow gulp.task('compass',function(){ gulp.src('public_html/app/scss/style.scss') //.pipe(plumber()) .pipe(compass({ …
batuman
  • 7,066
  • 26
  • 107
  • 229
0
votes
1 answer

How can I turn on the gulp-compass configuration option for line comments when using the gulp.task to change the .scss to .css?

https://www.npmjs.com/package/gulp-compass The above link says that the comments configuration option is defaulted to false. I tried to change my gulpfile.js to include the option and change it to true but my .css file still has no comments. Could…
Sankofa
  • 600
  • 2
  • 7
  • 19
0
votes
1 answer

How to put the file compiled by gulp-compass into gulp's stream?

I am a newbie to gulp and gulp-compass. IMHO, gulp-compass doesn't work in the gulp's stream paradigm. Normally, gulp's task should be something like: gulp.src('path/to/src') .pipe(doSth) .pipe(gulp.dest('path/to/dist')); But the following code…
lzl124631x
  • 4,485
  • 2
  • 30
  • 49
0
votes
0 answers

Gulp and Compass - Generating Multiple Themes (separate theme_style.css) files?

When I build the project, I want Gulp to generate multiple css files, one for each theme I want to expose to the user. (How the user changes the theme and how we maintain the theme across postbacks is a different topic.) I have the following gulp.js…
Mickael Caruso
  • 8,721
  • 11
  • 40
  • 72
0
votes
0 answers

Gulp/Compass: How to get Compass to actually use relative paths?

I have the following directory structure. Gulpfile.js --dist --src ----config.rb I'm using Gulp from the root project directory to compile my scss, which is what I think is causing issues. When I compile (creating a sprite sheet, specifically) the…
Scheda
  • 526
  • 5
  • 11
1
2