npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sass-all-variable-loader

v0.1.5

Published

Loads sass files and extracts all variable declarations including from the imported sass files.

Downloads

751

Readme

sass-all-variable-loader

Loads sass files and extracts all variable declarations including from the imported sass files.

npm version dependencies devDependecies

About

This webpack loader helps to get variable values from the SASS file in the JavaScript file as a JSON object with the property names corresponding to variable names.

Installation

npm

$ npm install --save-dev sass-all-variable-loader

yarn

$ yarn add sass-all-variable-loader -D

Usage

It's better to create a SASS file which imports all variable declaration files you need. For example, variables.scss:

@import "./common-variables";
@import "./bootstrap-variables";
@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";

Suppose bootstrap-variables.scss declares variables as follows:

$gray-800: #29363d;

$body-color: $gray-800;

Then declare a loader in your webpack config:

module.exports = {
  module: {
    rules: [
      {
        oneOf: [
          {
            test: /variables\.scss/,
            use: [
              'sass-all-variable-loader',
            ]
          },

Important thing: this entry should be before any other .scss loaders.

Then you can import variables in your .js/.ts file:

import * as reactstrap from 'reactstrap';
import styled from 'styled-components';

const variables = require('../../scss/variables.scss');

export const Pimpochka = styled(reactstrap.Button)`
  background-color: ${variables['$body-color']};
`;

If you don't want to declare a separate entry in webpack config, you can import the sass file with the exclamation mark syntax:

import variables from '!!sass-all-variable-loader!./_variables.scss';

However I don't recommend it because it is weird and it breaks navigation in your favorite IDE.

Limitations

This loader was created because of critical limitations of similar ones out there. For example sass-variable-loader can't handle any multiline statements or declarations such as sass maps or functions. Even though this loader still has it's own limitations:

  • The current implementation neglects the content from the previous loaders, if any.
  • The resulting map preserves the variable names (see usage example above). If you need them camelCased, you are welcome to contribute.

License

MIT