index.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. var _path = _interopRequireDefault(require("path"));
  7. var _postcss = _interopRequireDefault(require("postcss"));
  8. var _yaml = _interopRequireDefault(require("yaml"));
  9. var _lilconfig = require("lilconfig");
  10. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  11. const cssnano = 'cssnano';
  12. /*
  13. * @param {string} moduleId
  14. * @returns {boolean}
  15. */
  16. function isResolvable(moduleId) {
  17. try {
  18. require.resolve(moduleId);
  19. return true;
  20. } catch (e) {
  21. return false;
  22. }
  23. }
  24. /*
  25. * preset can be one of four possibilities:
  26. * preset = 'default'
  27. * preset = ['default', {}]
  28. * preset = function <- to be invoked
  29. * preset = {plugins: []} <- already invoked function
  30. */
  31. function resolvePreset(preset) {
  32. let fn, options;
  33. if (Array.isArray(preset)) {
  34. fn = preset[0];
  35. options = preset[1];
  36. } else {
  37. fn = preset;
  38. options = {};
  39. } // For JS setups where we invoked the preset already
  40. if (preset.plugins) {
  41. return preset.plugins;
  42. } // Provide an alias for the default preset, as it is built-in.
  43. if (fn === 'default') {
  44. return require('cssnano-preset-default')(options).plugins;
  45. } // For non-JS setups; we'll need to invoke the preset ourselves.
  46. if (typeof fn === 'function') {
  47. return fn(options).plugins;
  48. } // Try loading a preset from node_modules
  49. if (isResolvable(fn)) {
  50. return require(fn)(options).plugins;
  51. }
  52. const sugar = `cssnano-preset-${fn}`; // Try loading a preset from node_modules (sugar)
  53. if (isResolvable(sugar)) {
  54. return require(sugar)(options).plugins;
  55. } // If all else fails, we probably have a typo in the config somewhere
  56. throw new Error(`Cannot load preset "${fn}". Please check your configuration for errors and try again.`);
  57. }
  58. /*
  59. * cssnano will look for configuration firstly as options passed
  60. * directly to it, and failing this it will use lilconfig to
  61. * load an external file.
  62. */
  63. function resolveConfig(options) {
  64. if (options.preset) {
  65. return resolvePreset(options.preset);
  66. }
  67. let searchPath = process.cwd();
  68. let configPath = null;
  69. if (options.configFile) {
  70. searchPath = null;
  71. configPath = _path.default.resolve(process.cwd(), options.configFile);
  72. }
  73. const configExplorer = (0, _lilconfig.lilconfigSync)(cssnano, {
  74. searchPlaces: ['package.json', '.cssnanorc', '.cssnanorc.json', '.cssnanorc.yaml', '.cssnanorc.yml', '.cssnanorc.js', 'cssnano.config.js'],
  75. loaders: {
  76. '.yaml': (filepath, content) => _yaml.default.parse(content),
  77. '.yml': (filepath, content) => _yaml.default.parse(content)
  78. }
  79. });
  80. const config = configPath ? configExplorer.load(configPath) : configExplorer.search(searchPath);
  81. if (config === null) {
  82. return resolvePreset('default');
  83. }
  84. return resolvePreset(config.config.preset || config.config);
  85. }
  86. const cssnanoPlugin = (options = {}) => {
  87. if (Array.isArray(options.plugins)) {
  88. if (!options.preset || !options.preset.plugins) {
  89. options.preset = {
  90. plugins: []
  91. };
  92. }
  93. options.plugins.forEach(plugin => {
  94. if (Array.isArray(plugin)) {
  95. const [pluginDef, opts = {}] = plugin;
  96. if (typeof pluginDef === 'string' && isResolvable(pluginDef)) {
  97. options.preset.plugins.push([require(pluginDef), opts]);
  98. } else {
  99. options.preset.plugins.push([pluginDef, opts]);
  100. }
  101. } else if (typeof plugin === 'string' && isResolvable(plugin)) {
  102. options.preset.plugins.push([require(plugin), {}]);
  103. } else {
  104. options.preset.plugins.push([plugin, {}]);
  105. }
  106. });
  107. }
  108. const plugins = [];
  109. const nanoPlugins = resolveConfig(options);
  110. for (const nanoPlugin of nanoPlugins) {
  111. if (Array.isArray(nanoPlugin)) {
  112. const [processor, opts] = nanoPlugin;
  113. if (typeof opts === 'undefined' || typeof opts === 'object' && !opts.exclude || typeof opts === 'boolean' && opts === true) {
  114. plugins.push(processor(opts));
  115. }
  116. } else {
  117. plugins.push(nanoPlugin);
  118. }
  119. }
  120. return (0, _postcss.default)(plugins);
  121. };
  122. cssnanoPlugin.postcss = true;
  123. var _default = cssnanoPlugin;
  124. exports.default = _default;
  125. module.exports = exports.default;