summaryrefslogblamecommitdiff
path: root/node_modules/tailwindcss/src/postcss-plugins/nesting/index.js
blob: 9fbcddf35f1c0c9044ffa3780e934dbfbf71429a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                           
import { nesting } from './plugin'

export default Object.assign(
  function (opts) {
    return {
      postcssPlugin: 'tailwindcss/nesting',
      Once(root, { result }) {
        return nesting(opts)(root, result)
      },
    }
  },
  { postcss: true }
)