Socket
Socket
Sign inDemoInstall

postcss-load-plugins

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-load-plugins

Autoload Plugins for PostCSS


Version published
Weekly downloads
189K
increased by5.7%
Maintainers
1
Weekly downloads
 
Created
Source

npm node deps tests coverage code style chat

Load Plugins

Autoload Plugins for PostCSS

Install

npm i -D postcss-load-plugins

Usage

npm i -S|-D postcss-plugin

Install plugins and save them to your package.json dependencies/devDependencies.

package.json

Create postcss section in your projects package.json.

App
  |– client
  |– public
  |
  |- package.json
{
  "postcss": {
    "plugins": {
      "postcss-plugin": {}
    }
  }
}

.postcssrc

Create a .postcssrc file.

App
  |– client
  |– public
  |
  |-.postcssrc
  |- package.json
{
  "plugins": {
    "postcss-plugin": {}
  }
}

postcss.config.js

Create a postcss.config.js file.

App
  |– client
  |– public
  |
  |- postcss.config.js
  |- package.json

Plugins can be loaded in either using an {Object} or an {Array}.

{Object}
module.exports = (ctx) => {
  plugins: {
    'postcss-plugin': ctx.plugin
  }
}
{Array}
module.exports = (ctx) => {
  plugins: [
    require('postcss-plugin')(ctx.plugin)
  ]
}

Options

Plugin options can take the following values.

'postcss-plugin': {} || null

:warning: {} must be an empty object

[Object]: Plugin loads with given options.

'postcss-plugin': { option: '', option: '' }

false: Plugin will not be loaded.

'postcss-plugin': false

Order

Plugin order is determined by declaration in the plugins section.

{
  plugins: {
    'postcss-plugin': {}, // plugins[0]
    'postcss-plugin': {}, // plugins[1]
    'postcss-plugin': {}  // plugins[2]
  }
}

Context

When using a function (postcss.config.js), it is possible to pass context to postcss-load-plugins, which will be evaluated before loading your plugins. By default ctx.env (process.env.NODE_ENV) and ctx.cwd (process.cwd()) are available.

Examples

postcss.config.js

module.exports = (ctx) => {
  plugins: {
    postcss-import: {},
    postcss-bem: ctx.bem || {},
    cssnano: ctx.env === 'development' ? false : {}
  }
}

const { readFileSync } = require('fs')

const postcss = require('postcss')
const pluginsrc = require('postcss-load-plugins')

const css = readFileSync('index.css', 'utf8')

const ctx = { bem: { style: 'bem' } }

pluginsrc(ctx).then((plugins) => {
  postcss(plugins)
    .process(css)
    .then(({ css }) => console.log(css))
})

Maintainers


Michael Ciniawsky

Mateusz Derks

Keywords

FAQs

Package last updated on 27 Oct 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc