Questions tagged [libsass]

Libsass is a SASS pre-processing language for CSS compiled in C instead of Ruby. It allows you to write cleaner style-sheets and makes collaboration on your CSS a breeze. Libsass is know faster, but its development is a bit delayed.

Sass is a pre-processing language for CSS. It allows you to write cleaner style-sheets and makes collaboration on your CSS a breeze.

131 questions
4
votes
1 answer

MSBuild LibSass Error

Compiling Sass files using gulp-sass to css locally with no problem. On build machine, node modules are installed and when compiling .net code, getting error: node_modules\node-sass\src\libsass\win\libsass.sln.metaproj:The specified solution…
user6401682
3
votes
1 answer

Operation not permitted with node-sass install

I currently want to install node-sass in a project but every time I get this error error: unable to rename temporary 'Release / obj.target / libsass / src / libsass / src / color_maps-5ff12a01.o.tmp' to output file 'Release / obj.target / libsass /…
nkweb
  • 163
  • 1
  • 12
3
votes
1 answer

Sass (LibSass) with Spring MVC and JAVA

I was planning to use Sass with my Spring-MVC application. From Sass-lang website I got this Maven LibSass Plugin. I have put it in my pom.xml But I am really confused with what next? The major doubts I have are: Which directory I should keep my…
Priyank Thakkar
  • 4,752
  • 19
  • 57
  • 93
3
votes
1 answer

How to import directory in libsass

I am trying to import several SCSS files(page1.scss, page2.scss and ..) in my app.scss but I haven't found any solution(plugin and etc). I saw these answers but they are for Ruby on Rails not libsass. I am using: Gulp, Gulp-sass, Libsass…
Alex
  • 8,461
  • 6
  • 37
  • 49
3
votes
1 answer

grunt-newer not working with grunt-sass

I am trying to use grunt-newer to pick up changes to my sass partials to then run the grunt-sass task. For some reason, it doesn't seem to register any updates. Argh! Example directory structure: sass - components _breadcrumb.scss -…
digitalclubb
  • 585
  • 1
  • 5
  • 14
3
votes
2 answers

I'm trying to utilizing SASS in an ant file while removing ruby dependencies

I am currently using a ruby gem SASS in order to convert my *.scss files to *.css files on a large project. Here is a mockup of the code I am using:
3
votes
2 answers

Grunt Task - freeing up the port

I setup this. http://www.zell-weekeat.com/grunt-sass-with-susy/ It works fine for one run then, if I exit out of the sass watch I can't free up the port. Fatal error: Port 35729 is already in use by another process. Then sudo lsof -i…
LeBlaireau
  • 17,133
  • 33
  • 112
  • 192
3
votes
0 answers

grunt-sass, no errors log when 'watching'

I'm using the following grunt tasks grunt-sass grunt-contrib-watch grunt-autoprefix node-bourbon (there are a few other tasks, such as uglify, spritesmith, and haml, which i have left out of this example) My grunt file looks like…
magicspon
  • 926
  • 2
  • 9
  • 28
2
votes
0 answers

react app needs to upgrade version of libsass used by node-sass

I have a react app that is using node-sass (v4.14.1). It looks like it only uses version 3.5.5 of libsass. This white source scan I have says I need to update libsass to 3.6.0 I am really struggling with what the path to fixing this is. Has anyone…
Ryan H
  • 67
  • 4
2
votes
1 answer

Wrong source maps created by Libsass for CSS files in a JSF project

I'm using Libsass (by means of libsass-maven-plugin) for compiling SASS files into CSS files in a JSF project. The outputStyle is "compressed". The resultant source maps are apparently wrong - when inspecting something in a browser, it often points…
Vsevolod Golovanov
  • 4,068
  • 3
  • 31
  • 65
2
votes
0 answers

Node sass not importing

I am building a sass compiler with nodejs, electron, and node-sass. There will be a config file that will describe some "sass compilers" for many projects and the user will have the ability to activate and deactivate them through a GUI. I managed…
Giwrgos Gkogkas
  • 460
  • 1
  • 9
  • 23
2
votes
1 answer

How do I pass libsass configuration variables into a flask_assets bundle?

My goal is to set LIBSASS_STYLE="expanded" via flask_assets.Bundle. The webassets libsass documentation says I can do it, but doesn't say how. My base app controller looks like the following. from flask import Flask, render_template from…
FinnM
  • 394
  • 1
  • 3
  • 17
2
votes
1 answer

BundleTransformer LibSass Could not be found error

I want to use BundleTransformer. I've followed all the steps stated in the docs, but still don't work. I've installed: BundleTransformer.SassAndScss BundleTransformer.Autoprefixer LisSassHost…
gabaros
  • 743
  • 1
  • 6
  • 24
2
votes
1 answer

How can I specify a resource root for SCSS includes in my Webpack sass-loader config?

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 SCSS and JS files in. Currently to import an SCSS…
BaronVonKaneHoffen
  • 1,902
  • 1
  • 21
  • 29
2
votes
0 answers

SASS, SCSS : pre-compiling mixins and functions? A.k.a. removing compass requirement or selectively compile mixins and functions

I have a very large project made with Compass. The project takes a huge time to compile (1 to 2 mins) because it's using the Ruby version to compile (necessary because of some custom extensions that were never translated to have libsass…
davidwebca
  • 435
  • 5
  • 11
1
2
3
8 9