Questions tagged [sass-globbing]

Sass globbing allows you to import many sass or scss files in a single import statement.

Sass globbing allows you to import many sass or scss files in a single import statement.

https://github.com/chriseppstein/sass-globbing

6 questions
5
votes
0 answers

Compass and sass-globbing 'file to import not found or unreadable' error

I'm new to sass-globbing and gems as a whole so I'm sorry if this question mixes many topics. The problem is that I'm trying to watch my project with compass and I'm getting the error: File to import not found or unreadable: This is…
davidpauljunior
  • 8,238
  • 6
  • 30
  • 54
2
votes
2 answers

Problems with grunt-sass-globbing plug-in structure

I'm attempting to use Dennis Becker's grunt-sass-globbing plug-in with libsass since libsass doesn't support sass-globbing. https://github.com/DennisBecker/grunt-sass-globbing I've tried setting up a libsass project using the documentation that the…
dlahay
  • 31
  • 4
0
votes
1 answer

Rails 6.1 sass-loader without asset pipeline (webpacker)

Auto-including all nested SCSS files with Rails 6.1 and sass-loader With Rails 6.0.3.4 it was possible to use Sass-loader to glob all SCSS files without including each and every one manually. Problem - syntax v7 This fails in Rails 6.1 with the…
0
votes
1 answer

Compile partial SCSS-Files with Sass-Globbing in Jetbrains IDE

I just installed the sass-globbing-plugin to import partials recursively from a folder automatically. Currently I am using the newest version of jetbrains pycharm. To activate sass-globbing to the existing scss-filewatcher, I edited the arguments…
0
votes
1 answer

Using gulp-sass-glob in Visual Studio

In Visual Studio (Task Runner Explorer), I am trying to use gulp-sass-glob in my SCSS: gulpfile.js var gulp = require('gulp'), sass = require('gulp-sass'), sassGlob = require('gulp-sass-glob'); gulp.task('css', function () { return…
Karl Tynan
  • 125
  • 2
  • 12
0
votes
1 answer

Grunt SASS Globbing issue - Error when importing partials folder

I am attempting to use sass globbing in my grunt project. But when I include the folder containing my partials I get the following message “Warning: Error: File to import not found or unreadable: partials” Here is my file structure: styles |_…