You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

stylus-resources-loader

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stylus-resources-loader

Stylus resources loader for Webpack

0.0.4
latest
Source
npmnpm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
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

css

FAQs

Package last updated on 10 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