postcss-wrap-plugin
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

codecov.io

postcss-wrap-plugin

Plugin for help you to wrap your styles into some selectors.

Usage example:

[webpack.config]
{
  loader: require.resolve('postcss-loader'),
  options: {
    ident: 'postcss',
    plugins: () => [
      require('postcss-wrap-plugin')({
        wrapSelector: ['#test', 'div ~']
      }),
    ],
  },
}

api

wrapSelector - required params, your wrap selector or array of selectors

require('postcss-wrap-plugin')({
    wrapSelector: ['#test', '#test ~'],
}),
ORIGINAL STYLE
div {
  // some styles
}
RESULT STYLE
#test div, #test ~ div {
  // some styles
}

OR

require('postcss-wrap-plugin')({
    wrapSelector: '#test',
}),
ORIGINAL STYLE
div {
  // some styles
}
RESULT STYLE
#test div {
  // some styles
}

handleRootTags - optional params that say should modify root tags (html, body) or not

when using option replace - tags will be transform to class, like a body -> .body, html -> .html

require('postcss-wrap-plugin')({
    wrapSelector: '#test',
    handleRootTags: 'replace',
}),
ORIGINAL STYLE
body div {
    // some styles
}
RESULT STYLE
#test.body div {
    // some styles
}

when using option remove - tags will be remove from selector

require('postcss-wrap-plugin')({
    wrapSelector: '#test',
    handleRootTags: 'remove',
}),
ORIGINAL STYLE
body div {
    // some styles
}
RESULT STYLE
#test  div {
    // some styles
}

when options is not setup, root tags also will be wrapped

require('postcss-wrap-plugin')({
    wrapSelector: '#test',
}),
ORIGINAL STYLE
body div {
    // some styles
}
RESULT STYLE
#test body div {
    // some styles
}

Package Sidebar

Install

npm i postcss-wrap-plugin

Weekly Downloads

21

Version

2.0.0

License

MIT

Unpacked Size

21.1 kB

Total Files

9

Last publish

Collaborators

  • mohax22rus