New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

scss-variable-loader

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scss-variable-loader

A webpack loader for SCSS variables

latest
Source
npmnpm
Version
0.1.8
Version published
Maintainers
1
Created
Source

SCSS variable loader from webpack

npm version

Parses your SCSS variables and returns them as an object. Supports SCSS functions like lighten, darken, mix, etc.

Input:

$gray-base: #000 !default;
$gray-darker: lighten($gray-base, 13.5%) !default; // #222
$gray-dark: lighten($gray-base, 20%) !default; // #333
$gray: lighten($gray-base, 33.5%) !default; // #555
$gray-light: lighten($gray-base, 46.7%) !default; // #777
$gray-lighter: lighten($gray-base, 93.5%) !default; // #eee

Result:

{
  "grayBase": "#000",
  "grayDarker": "#222222",
  "grayDark": "#333333",
  "gray": "#555555",
  "grayLight": "#777777",
  "grayLighter": "#eeeeee"
}

Installation

npm install --save-dev scss-variable-loader or yarn add -D scss-variable-loader

Usage

import variables from "scss-variable-loader!./_variables.scss";
// => returns all the variables in _variables.scss as an object with each variable name camelCased

Note: If you've already defined loaders for Sass files in the configuration, you can override the loader order by writing !!scss-variable-loader!./_variables.scss to disable all loaders specified in the configuration for that module request.

Options

You can pass options to the loader via query parameters.

import variables from "sass-variable-loader?preserveVariableNames!./_variables.scss";
// => returns all the variables in _variables.scss as an object with each variable name left intact

Credit

Built by wuz Based on SASS Variable Loader

FAQs

Package last updated on 06 Jan 2021

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