dependabot[bot] e8d2e3f987 Bump ini from 1.3.5 to 1.3.7
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7.
- [Release notes](https://github.com/isaacs/ini/releases)
- [Commits](https://github.com/isaacs/ini/compare/v1.3.5...v1.3.7)

Signed-off-by: dependabot[bot] <support@github.com>
2020-12-11 04:16:11 +00:00
2018-05-03 01:27:28 -04:00
2018-05-03 01:27:28 -04:00
2018-05-03 01:27:28 -04:00
2020-07-19 16:56:24 -04:00
2018-05-03 01:27:28 -04:00
2019-07-08 12:31:37 -04:00
2019-07-08 12:34:26 -04:00
2018-05-03 01:27:28 -04:00
2020-12-11 04:16:11 +00:00
2020-07-19 16:56:24 -04:00
2019-07-08 12:34:26 -04:00
2019-07-08 12:34:26 -04:00

PostCSS Partial Process

PostCSS plugin that runs other plugins on parts of a CSS file delimited by comments.

Installation

npm install postcss-partial-process

Usage

postcss([
  require('postcss-partial-process')({
    startComment: 'postcss-partial-process start', // default
    endComment: 'postcss-partial-process end', // default
    removeComments: 'auto', // default, means the comments are removed unless they are important (e.g. /*! like this */); also accepts `true` or `false`
    plugins = [
      require('some postcss plugin'), // this plugin will only run between the comments "postcss-partial-process start" and "postcss-partial-process end"
    ],
  }),
])

See PostCSS docs for examples for your environment.

Description
No description provided
Readme MIT 281 KiB
Languages
JavaScript 100%