Socket
Socket
Sign inDemoInstall

stylus-resources-loader

Package Overview
Dependencies
25
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    stylus-resources-loader

Stylus resources loader for Webpack


Version published
Weekly downloads
12
decreased by-55.56%
Maintainers
1
Install size
2.39 MB
Created
Weekly downloads
 

Readme

Source

stylus-resources-loader

Stylus resources loader for Webpack, inspired by sass-resources-loader.

Loading a global settings file

A common request is to be able to load a settings file in each component without the need to explicity import it each time, e.g. to use stylus variables globally throughout all components. To accomplish this:

npm install stylus-resources-loader --save-dev

Then add the following webpack rule:

module: {
  rules: [
    // Apply loader
    {
      test: /\.(styl|stylus)$/,
      use: [
        'style-loader',
        'css-loader',
        'postcss-loader',
        'stylus-loader',
        {
          loader: 'stylus-resources-loader',
          options: {
            // Provide path to the file with resources
            resources: './path/to/resources.styl',

            // Or array of paths
            resources: [
              './path/to/vars.styl',
              './path/to/mixins.styl'
            ]
          }
        }
      ]
    }
  ]
},

As an example, if you are using vuejs-templates/webpack, modify build/util.js like so:

stylus: generateLoaders('stylus').concat({
  loader: 'stylus-resources-loader',
  options: {
    resources: './path/to/resources.styl'
  }
}),

Keywords

FAQs

Last updated on 10 Aug 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc