Socket
Socket
Sign inDemoInstall

postcss-processor-order

Package Overview
Dependencies
11
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    postcss-processor-order

PostCSS plugin for sorting processors passed to postcss


Version published
Weekly downloads
2
Maintainers
1
Install size
1.41 MB
Created
Weekly downloads
 

Changelog

Source

[0.1.1] - 2016-10-24

  • Fixed processors order in default config

Readme

Source

PostCSS Processor Order Build Status

PostCSS plugin for sorting processors passed to postcss.

Because you really want to forget about plugins priority and add processors in any order. You want to write CSS but not think how to built your preprocessor from the bricks. The only requirement that this plugin should be first processor passed to PostCSS.

/* Input example */
require('postcss-processor-order')(),
require('postcss-each')(),
require('postcss-inline-svg')(),
require('stylelint')(),
require('postcss-nested')(),
require('postcss-partial-import')(),
require('postcss-svgo')(),
/* Output example */
require('postcss-processor-order')(),
require('postcss-partial-import')(),
require('postcss-each')(),
require('postcss-nested')(),
require('postcss-inline-svg')(),
require('postcss-svgo')(),
require('stylelint')()

Install

npm i postcss-processor-order --save

Usage

postcss([ require('postcss-processor-order')(opts) ])

See PostCSS docs for examples for your environment.

Options

  • order {Array} priority of plugins. By default it uses params from config.js

Contributing

There are a lot of PostCSS plugins and, I'm sure, you even not aware about half of them. I'm extending this priority list with plugins when I reach them in my code.

So, if you faster than me, please, send me your PR with modified version of config.js where you add new plugins.

Don't forget to run npm test before commit.

Keywords

FAQs

Last updated on 24 Oct 2016

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