🌐
npm
npmjs.com › package › gulp-sass
gulp-sass - npm
March 5, 2025 - Gulp plugin for sass. Latest version: 6.0.1, last published: a year ago. Start using gulp-sass in your project by running `npm i gulp-sass`. There are 2399 other projects in the npm registry using gulp-sass.
      » npm install gulp-sass
    
Published   Mar 05, 2025
Version   6.0.1
Author   David Manning
🌐
GitHub
github.com › dlmanning › gulp-sass › releases
Releases · dlmanning/gulp-sass
March 5, 2025 - Require Gulp 4 · Drop dependency on the deprecate node-sass · Remove hardcoded default Sass compiler · It is now required to explicitly install a Sass compiler. npm install gulp-sass sass · or to continue using node-sass · npm install gulp-sass ...
Author   dlmanning
🌐
freeCodeCamp
freecodecamp.org › news › how-to-set-up-gulp-sass-using-the-command-line-if-youre-a-beginner-17729f53249
How to set up Gulp-sass using the command line if you’re a beginner
November 30, 2018 - Now you can install a gulp task — in this case we would install Gulp-sass. This task makes it possible to convert Sass to CSS. Still using the command line, you can install Gulp-sass by running **npm** install gulp-sass --save-dev.
🌐
GitHub
github.com › dlmanning › gulp-sass
GitHub - dlmanning/gulp-sass: SASS plugin for gulp · GitHub
As of version 5, gulp-sass does not include a default Sass compiler, so you must install one (either sass, sass-embedded, or node-sass) along with gulp-sass. npm install sass gulp-sass --save-dev · Then, you must explicitly set that compiler in your gulpfille.
Starred by 1.6K users
Forked by 374 users
Languages   JavaScript 93.4% | CSS 3.4% | SCSS 2.9% | Sass 0.3%
🌐
ZetCode
zetcode.com › gulp › sass
Gulp Sass - compiling Sass to CSS with gulp-sass plugin
October 18, 2023 - We initiate a Node.js project and install Gulp and gulp-sass plugin. $ npm init -y $ npm i --global gulp-cli $ npm i gulp --save-dev
🌐
Nascenia
nascenia.com › assets-compilation-using-gulp-sass-npm
Assets compilation using gulp, sass, npm | Nascenia
June 8, 2023 - var gulp = require( 'gulp' ); var rename = require ( 'gulp-rename' ); var sass = require ( 'gulp-sass' ); var styleSRC = './src/scss/style.scss'; var styleDIST = './dist/css/'; gulp.task('style', function(){ gulp.src( styleSRC ) .pipe( sass( { errorLogToConsole: true, outputStyle: 'compressed' }) ) .on( 'error', console.error.bind( console )) .pipe( rename( { suffix: '.min' } ) ) .pipe( gulp.dest( styleDIST ) ); }); After that if we run the command below we will get our scss file compiled to minified css in dist/css folder as like style.min.css ... At first we have to install gulp-autoprefixer and gulp-sourcemaps by running the commands given below · npm install --save-dev gulp-autoprefixernpm install --save-dev gulp-sourcemaps
🌐
freeCodeCamp
forum.freecodecamp.org › t › sass-gulp-npm-node-js › 627746
Sass gulp npm node JS - The freeCodeCamp Forum
August 5, 2023 - I can’t wrap my head around this I tried a couple things online and nothing is working. I need to start finishing up this website it’s for a plumbing company. Best, Jason
🌐
Adobe Developer
developer.adobe.com › commerce › frontend-core › guide › css › custom-preprocessor › gulp-sass
Sass Preprocessor and Gulp | Commerce Frontend Development
Add the gulp-sass package for the Sass preprocessor by running the following command: npm install gulp-sass · Create a theme, as described in Create a new storefront theme. Set up a Gulp task for Sass compilation by placing the file with the ...
Find elsewhere
🌐
SymfonyCasts
symfonycasts.com › screencast › gulp › sass
Sass to CSS > Gulp! Refreshment for Your Frontend Assets
Most things are done with a plugin. Go back to Gulp's site and click Plugins to find a search for, not 13, but 1373 plugins. The one we want is gulp-sass. First, install it! Copy the npm install gulp-sass.
🌐
Snyk
snyk.io › snyk vulnerability database › npm
gulp-sass - npm Package Health Analysis
December 6, 2020 - We found that gulp-sass demonstrates a positive version release cadence with at least one new version released in the past 12 months. In the past month we didn't find any pull request activity or change in issues status has been detected for the GitHub repository. ... The npm package gulp-sass receives a total of 336,176 downloads a week.
🌐
npm
npmjs.com › package › gulp-scss
gulp-scss - npm
July 1, 2016 - Gulp plugin for sass stylesheet compiler by standard approach. Latest version: 1.4.0, last published: 9 years ago. Start using gulp-scss in your project by running `npm i gulp-scss`. There are 15 other projects in the npm registry using gulp-scss.
      » npm install gulp-scss
    
Published   Jul 01, 2016
Version   1.4.0
Author   Hiroaki Yamamoto
🌐
Medium
b-benjithomas.medium.com › sass-and-gulp-8b069436704b
A Match Made in Heaven for Front-end Development | by Benjamin | Medium
January 23, 2023 - “Cannot find module ‘gulp-sass’” error: This error occurs when the gulp-sass package is not installed, or when it’s not listed as a dependency in your package.json file. To fix this, make sure that you have run npm install --save-dev gulp-sass to install the package and check if it's listed under devDependencies in your package.json file.
🌐
npm
npmjs.com › package › gulp-dart-sass
gulp-dart-sass - npm
April 5, 2023 - Gulp plugin for sass. Latest version: 1.1.0, last published: 3 years ago. Start using gulp-dart-sass in your project by running `npm i gulp-dart-sass`. There are 58 other projects in the npm registry using gulp-dart-sass.
      » npm install gulp-dart-sass
    
Published   Apr 05, 2023
Version   1.1.0
Author   David Manning
🌐
npm
npmjs.com › package › @types › gulp-sass
@types/gulp-sass - npm
November 7, 2023 - TypeScript definitions for gulp-sass. Latest version: 6.0.0, last published: 2 months ago. Start using @types/gulp-sass in your project by running `npm i @types/gulp-sass`. There are 5 other projects in the npm registry using @types/gulp-sass.
      » npm install @types/gulp-sass
    
🌐
DEV Community
dev.to › okpainmo › fixing-gulp-sass-issues-in-gulp-4-24o1
Fixing gulp-sass issues in gulp 4. - DEV Community
April 30, 2021 - You need to set your sass compiler to "sass" (Dart-sass) to completely process sass inside of gulp. The docs on the NPM gulp-sass page need some important updating.
🌐
Coder Coder
coder-coder.com › home › how to fix error “cannot find module gulp-sass” in gulp
How to fix error "cannot find module gulp-sass" in Gulp - Coder Coder
November 5, 2024 - You can do this by adding the global (-g) flag to the install command, like this: npm install -g gulp-sass.
🌐
Medium
jhinter.medium.com › setting-up-gulp-to-compile-scss-in-less-than-5-minutes-fee8bea2b68b
Setting up GULP to compile SCSS in less than 5 minutes | by J Hinter | Medium
October 22, 2019 - 'use strict';var gulp = require('gulp'); var sass = require('gulp-sass'); var concat = require('gulp-concat');sass.compiler = require('node-sass');gulp.task('sass', function () { return gulp.src('./sass/**/*.scss') .pipe(concat('custom.scss')) .pipe(sass().on('error', sass.logError)) .pipe(gulp.dest('./dist/'));});