index.js 488 B

123456789101112131415161718192021
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. Object.defineProperty(exports, "default", {
  6. enumerable: true,
  7. get: function() {
  8. return _default;
  9. }
  10. });
  11. const _plugin = require("./plugin");
  12. const _default = Object.assign(function(opts) {
  13. return {
  14. postcssPlugin: "tailwindcss/nesting",
  15. Once (root, { result }) {
  16. return (0, _plugin.nesting)(opts)(root, result);
  17. }
  18. };
  19. }, {
  20. postcss: true
  21. });