libsass Questions
4
I just started using gulp-sass, is there a "easy" way to find out what version of Sass, that is being used?
Not that I think it matters too much but I'm using gulp-sass in Visual Studio 2015 (CTP6...
Dependence asked 22/4, 2015 at 9:48
4
Solved
I was struggling with setting up libsass as it wasn't as straight-forward as the Ruby based transpiler. Could someone explain how to:
install libsass?
use it from command line?
use it with task r...
13
Solved
I want to use the node-sass module in my node.js v0.12 application to benefit from the performance of libsass.
I executed npm i node-sass to install the module, no errors so far.
Now the mess star...
6
Solved
I'm trying to use yarn for my latest project. How to install bootstrap 4 - libsass libraries using yarn
Zeena asked 7/11, 2016 at 21:10
3
I'm trying to inject NODE_ENV into a sass file, so I can have different output for dev/prod env, and have a sass function that has a condition like that inside it:
@if (NODE_ENV == 'prod') {}
my w...
Lobby asked 2/3, 2016 at 14:46
6
So I am using Gulp Sass with gulp-changed (i've also tried gulp-newer with the updated syntax changes) and watching all the scss files in my folders.
When I change a base scss file it will compil...
1
Solved
Say I have something like:
{
test: /\.scss$/,
exclude: /node_modules/,
loaders: ['style-loader', 'css-loader', 'sass-loader']
}
in my webpack config and I have a app/ sub folder with all my S...
1
The algorithm that Node.js uses to resolve a require() call is very clearly documented in pseudocode.
I need the same thing for Sass's @import statement.
I know that @import 'foo' will try variou...
1
Solved
When I try to install libsass into a Python 3.5 virtualenv on Ubuntu, I get an error about not being able to build the wheel, but the install still seems to succeed. How do I either a) make the whe...
2
Solved
It seems that a recent version of node-sass (3.4.1) breaks our build. I am consistently getting this error message:
It's not clear which file to import for '@import "../file"'.
Candidates...
2
Solved
Exactly as the title says. Compilation times over 50 seconds are unacceptable. So, is there a way, let's say: a single (partial) file with compass magic (like sprite mixins, etc.), and the rest of ...
1
For local HTML/Sass/Css developement we use libsass (via Grunt) to compile our Sass files to Css. The Css background-image URL's are root relative.
Sass
$dir-img: /img;
.header {
background-ima...
3
I'm currently running NPM's node-sass tool, but the version of libsass it is running is 3.2.2, and the version I need to be running is 3.2.4, as this fixes a crucial bug in one of the frameworks I ...
1
Solved
I'm trying to get libsass to work with the Rails 4 asset pipeline. So far I've cloned the ruby-libsass Gem from Github into the Vendor folder of my application. I added the followig to my gemfile:
...
Aschim asked 1/11, 2014 at 11:2
1
© 2022 - 2024 — McMap. All rights reserved.