1.1.0 • Published 1 year ago

postcss-transform-decl v1.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

postcss-transform-decl

Transform any declarations with custom rules.

Installation

npm install --save-dev postcss-transform-decl

Usage

// postcss.config.js
module.exports = {
  'postcss-transform-decl': {
    rules: [
      /* Your rules here ... */
    ],
  },
}

For legacy version:

// postcss.config.js
module.exports = {
  'postcss-transform-decl/dist/legacy': {
    rules: [
      /* Your rules here ... */
    ],
  },
}

Rules

You can write rules in either of the following ways:

[
  // Exact match
  { prop: 'overflow', from: 'overlay', to: 'hidden' },

  // Regular match
  { prop: /^overflow-?/, from: 'overlay', to: 'hidden' },

  // Backward/forward compatibility
  { prop: /^overflow-?/, from: 'overlay', to: 'hidden', at: 'before' },
  { prop: /^overflow-?/, from: 'auto', to: 'overlay', at: 'after' },

  // Regular replacement
  { prop: /^overflow-?/, from: /^(.+)lay$/, to: '$1load' },
  { prop: /^overflow-?/, from: /^(.+)lay$/, to: (matches, over) => `${over}load` },

  // Custom functions
  {
    prop: /^overflow-?/,
    transform(decl) {
      if (decl.prop === 'overflow-x') {
        return { from: 'overlay', to: 'auto' }
      } else {
        decl.value = 'hidden'
      }
    },
  },
]