Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@reboost/plugin-sass

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@reboost/plugin-sass

Sass/SCSS plugin for Reboost

  • 0.19.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

npm license

Sass Plugin

Transform Sass/SCSS files to CSS on the fly.

Usage

Setup

Install it using npm

npm i -D @reboost/plugin-sass

Install node-sass or sass (whichever you like), if not installed

npm i node-sass

or

npm i sass

Import it from the package

const { start } = require('reboost');
const SassPlugin = require('@reboost/plugin-sass');

Add it to the plugins array

const { start } = require('reboost');
const SassPlugin = require('@reboost/plugin-sass');

start({
  plugins: [
    SassPlugin({
      // Options
    })
  ]
})

Require file in your code

import './styles.scss';

Options

sassOptions

Type: Sass.Options | object

Options to use when rendering Sass/SCSS files. You can read about all Sass options in node-sass's npm package page.

License

Licensed under the MIT License.

Keywords

FAQs

Package last updated on 19 Dec 2020

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