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
0
votes
1 answer

Gulp-compass not compiling sass to css

gulp.task('compass', function() { gulp.src('components/sass/styles.scss') .pipe(compass({ config_file: 'config.rb', css: 'builds/development/css', sass: 'components/sass', image: 'builds/development/images' …
Srinivas
  • 847
  • 11
  • 13
0
votes
1 answer

Building Ionic Sass using Compass still looking for Removed Sass task

Using an ionic blank template with its default gulpfile and running: ionic setup sass I can build the application's Sass, but I wanted to add Compass. So using Gulp I added the below code to my gulpfile based on gulp-compass examples: gulp.task(…
mtpultz
  • 17,267
  • 22
  • 122
  • 201
0
votes
1 answer

Prevent intermediate compass file output when piping

I'm using gulp-compass to compile scss files. However, I'm concatenating output into a single file. This all works fine, but I'm noticing that compass itself is writing the individual files to the output directory. I'm left with the individual…
helion3
  • 34,737
  • 15
  • 57
  • 100
0
votes
2 answers

Gulp not watching correctly

I'm new to using gulp and I think I have it setup correctly, but it does not seem to be doing what it should be doing. My gulpfile.js has gulp.task('compass', function() { return gulp.src('sites/default/themes/lsl_theme/sass/**/*.scss') …
JDDoesDev
  • 376
  • 1
  • 6
0
votes
1 answer

stylesheets must be in the sass directory error with gulp-compass

I'm converting a grunt project to gulp, and am having problems with gulp-compass. We have scss files spread out in the source rather all in a single directory. That structure is important for this project and can't change. I figured I'd try to setup…
helion3
  • 34,737
  • 15
  • 57
  • 100
0
votes
1 answer

Material-ui not working in Safari only with Gulp-compass

I am using material-ui lib for react components, the scss port material-ui-sass See the following screenshot on Safari (Both mobile and desktop). They are working in Chrome, Firefox, even Opera, but just not in Safari. gulp.task('compass',…
ttback
  • 2,051
  • 5
  • 27
  • 40
0
votes
1 answer

Gulp compass without config.rb

I'm struggling to get gulp-compass working correctly without using a config.rb file. Prerequisites: I don't want to use a config.rb file I need to use compass (can't just use SASS) The docs say: var compass = require('gulp-compass'), path =…
davidpauljunior
  • 8,238
  • 6
  • 30
  • 54
1
2