Launch Week Day 3: Introducing Organization Notifications in Socket.Learn More
Socket
Book a DemoSign 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

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