New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-sass-export

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-sass-export

gulp plugin for sass-export

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-20%
Maintainers
1
Weekly downloads
 
Created
Source

Gulp-Sass-Export

Gulp plugin for sass-export Sass export utilities.

Use it for dev

Install it from NPM

$ npm install --save-dev gulp-sass-export
gulp plugin usage
const gulp = require('gulp');
const sassExport = require('gulp-sass-export');

gulp.task('sass-export', function() {
    let sourceFiles = ['./scss/_variables.scss', './scss/_colors.scss', './scss/utils/*.scss'];

    gulp.src(sourceFiles)
        .pipe(sassExport({
            fileName: 'sass-data.json',
            dependencies: ['./scss/globals/']
        }))
        .pipe(gulp.dest('./tmp'))
});

gulp.task('default', ['sass-export']);

Options:

  • fileName: {String} output file name. Default: 'sass-exported.json'
  • dependencies: {array} list of folders where your source files should look for the imports. default: []
  • type: {String} set it to 'array' for an array typed output, default 'structured'

Keywords

FAQs

Package last updated on 27 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc