gulp-ruby-sass | Compile Sass to CSS with Ruby Sass | Style Language library
kandi X-RAY | gulp-ruby-sass Summary
kandi X-RAY | gulp-ruby-sass Summary
Compile Sass to CSS with Ruby Sass
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- Create a gulp reporter
gulp-ruby-sass Key Features
gulp-ruby-sass Examples and Code Snippets
bower install bootstrap-sass-official --save
{
"devDependencies": {
"gulp": "3.9.1",
"gulp-bower": "0.0.13",
"gulp-notify": "3.0.0",
"gulp-ruby-sass": "2.1.1"
}
}
Community Discussions
Trending Discussions on gulp-ruby-sass
QUESTION
Could you please advise how to solve the error which can you find bellow. Everything works, however when I am trying add the gulp-autoprefixer I have this error with gulp in terminal. I hope for your help.
node -v v6.10.3
npm -v 3.10.10
gulp -v CLI version: 2.2.0 Local version: 3.9.1
package.json file
...ANSWER
Answered 2019-Sep-30 at 11:58The version of gulp-autoprefixer
that you're using requires at least Node 8. You're running Node 6, which doesn't recognize or support some of the newer Javascript syntax. You can downgrade gulp-autoprefixer
to 6.10.0 or, if possible, upgrade to Node >=8.
QUESTION
I'm working on a HTML/JS/CSS website and I use Gulp as automation tool.
It works perfectly fine when running gulp serve
but I receive the following errors when running gulp build
:
ANSWER
Answered 2017-Jun-20 at 16:35QUESTION
ANSWER
Answered 2018-Feb-08 at 17:56Your **/*.scss
wildcard picks up files alphabetically. Since the **
recurses to the bottom of the directory structure, it returns the directories alphabetically, with the files in each also sorted alphabetically.
That's the expected output of the wildcard.
QUESTION
My Gulp was working fine until I installed browser-sync
npm install browser-sync gulp --save-dev
Then I started to get this error:
Error: Cannot find module 'lru-cache'
Which I solved using this: npm link lru-cache
answer from https://github.com/npm/npm/issues/1154
However, now when I try to run gulp
I get this new error:
~/Projects/starfeeder ❯ npm install browser-sync gulp --save-dev npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue npm WARN deprecated node-uuid@1.4.8: Use uuid module instead
fsevents@1.1.2 install /Users/leongaban/Projects/starfeeder/node_modules/fsevents node install
My gulpfile if that helps:
...ANSWER
Answered 2017-Jun-26 at 17:59Ok so still not sure why I got those errors, but never installing browserSync again.
I had to npm link
all my gulp plugins.
That work, but then it broke during the gulp build
process.
Instead of doing npm link
to everything, included other node modules I've never heard off. I removed browserSync
and deleted my node_modules folder and did yarn(npm) install
.
QUESTION
According to this it's possible to compile susy install from Ruby with Gulp. But is it possible to use gulp-sass instead of gulp-compass or gulp-ruby-sass because of performance and deprecation ? Actually I use this in my gulpfile.js:
gulpfile
...ANSWER
Answered 2017-Apr-25 at 09:47You need to change sasscompil.logError
to plugins.sass.logError
such that
gulpfile.js
QUESTION
I want to use gulp + Foundation 6 + browserify. when run gulp in cli i have this error in terminal
...ANSWER
Answered 2017-Feb-28 at 19:03It might be that the string concatenation is not working correctly in the scss_sources
.
Try changing scss_sources to:
QUESTION
I'm learning Django, Foundation, Gulp, and SASS all at once. It's been tons of fun so far, but I've hit a brick wall now. I'm trying to compile Foundation 6 with Gulp.
Foundation's documentation gives an example of how to do this with Grunt, but otherwise only describes what needs to happen: http://foundation.zurb.com/sites/docs/sass.html#compiling-manually
The task I've written below has been based on what I see here: https://www.npmjs.com/package/gulp-ruby-sass/
Here is my current gulpfile.js
:
ANSWER
Answered 2017-Feb-08 at 01:00Found it. The trouble was the second argument ("sass"
) passed to the sass
function in the Gulp task:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install gulp-ruby-sass
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page