cli-peer-dependencies.js 793 B

123456789101112131415161718192021222324252627282930313233343536
  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: function() {
  13. return lazyPostcss;
  14. },
  15. lazyPostcssImport: function() {
  16. return lazyPostcssImport;
  17. },
  18. lazyAutoprefixer: function() {
  19. return lazyAutoprefixer;
  20. },
  21. lazyCssnano: function() {
  22. return lazyCssnano;
  23. }
  24. });
  25. function lazyPostcss() {
  26. return require("postcss");
  27. }
  28. function lazyPostcssImport() {
  29. return require("postcss-import");
  30. }
  31. function lazyAutoprefixer() {
  32. return require("autoprefixer");
  33. }
  34. function lazyCssnano() {
  35. return require("cssnano");
  36. }