You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
669 B

2 years ago
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. function _export(target, all) {
  6. for(var name in all)Object.defineProperty(target, name, {
  7. enumerable: true,
  8. get: all[name]
  9. });
  10. }
  11. _export(exports, {
  12. lazyPostcss: ()=>lazyPostcss,
  13. lazyPostcssImport: ()=>lazyPostcssImport,
  14. lazyAutoprefixer: ()=>lazyAutoprefixer,
  15. lazyCssnano: ()=>lazyCssnano
  16. });
  17. function lazyPostcss() {
  18. return require("postcss");
  19. }
  20. function lazyPostcssImport() {
  21. return require("postcss-import");
  22. }
  23. function lazyAutoprefixer() {
  24. return require("autoprefixer");
  25. }
  26. function lazyCssnano() {
  27. return require("cssnano");
  28. }