Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on May 19, 2024 via pnpm

gulp-sass 5.1.0

Gulp plugin for sass
Package summary
Share
0
issues
3
licenses
15
MIT
2
ISC
1
BSD-3-Clause
Package created
31 Aug 2013
Version published
31 Dec 2021
Maintainers
3
Total deps
18
Direct deps
6
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
15 Packages, Including:
ansi-colors@1.1.0
ansi-regex@5.0.1
ansi-wrap@0.1.0
arr-diff@4.0.0
arr-union@3.1.0
assign-symbols@1.0.0
extend-shallow@3.0.2
gulp-sass@5.1.0
is-extendable@1.0.1
is-plain-object@2.0.4
isobject@3.0.1
lodash.clonedeep@4.5.0
plugin-error@1.0.1
replace-ext@2.0.0
strip-ansi@6.0.1

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
picocolors@1.0.1
vinyl-sourcemaps-apply@0.2.1

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
source-map@0.5.7
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

6
All Dependencies CSV
β“˜ This is a list of gulp-sass 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
lodash.clonedeep4.5.011.36 kBMIT
prod
picocolors1.0.15.03 kBISC
prod
plugin-error1.0.14.3 kBMIT
prod
replace-ext2.0.02.4 kBMIT
prod
strip-ansi6.0.11.99 kBMIT
prod
vinyl-sourcemaps-apply0.2.11.33 kBISC
prod

Visualizations

Frequently Asked Questions

What does gulp-sass do?

The Gulp-SASS is an extremely convenient and efficient plugin for Gulp, primarily used for the transformation of SASS and SCSS files into CSS. Built around Dart Sass and fully capable of supporting Node Sass (though deprecated), this invaluable tool is sure to streamline any developer's workflow related to stylesheets.

How do you use gulp-sass?

In order to leverage the advantages of Gulp-SASS, one must first ensure the installation of both the core gulp-sass and a selected SASS compiler. This is achieved through a simple npm command:

npm install sass gulp-sass --save-dev

Then, Gulp-SASS must be incorporated into your gulpfile, fitting it with the compiler of your preference. This example demonstrates how this integration would appear in a CommonJS module:

const sass = require('gulp-sass')(require('sass'));

Implementing Gulp-SASS for usage within a Gulp task is also crucial. Here is an example of how to use Gulp-SASS in a Gulp task to render your CSS:

'use strict';

const gulp = require('gulp');
const sass = require('gulp-sass')(require('sass'));

function buildStyles() {
  return gulp.src('./sass/**/*.scss')
    .pipe(sass().on('error', sass.logError))
    .pipe(gulp.dest('./css'));
};

exports.buildStyles = buildStyles;
exports.watch = function () {
  gulp.watch('./sass/**/*.scss', ['sass']);
};

Additionally, options can be passed into the renderer to modify the final outcome of the CSS. Inline source maps can be included through the incorporation of a separate package, [gulp-sourcemaps](https://github.com/gulp-sourcemaps/gulp-sourcemaps).

Where are the gulp-sass docs?

The accompanying documentation and user manual for Gulp-SASS can be readily accessed within the official GitHub repository for this Node.js module under this url: https://github.com/dlmanning/gulp-sass. The repository not only includes detailed explanations and usage examples, but also insightful guidelines for issue filing, version updates, and migration to newer Gulp-SASS versions.