webpackHelpers.js 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. "use strict";
  2. var __importDefault = (this && this.__importDefault) || function (mod) {
  3. return (mod && mod.__esModule) ? mod : { "default": mod };
  4. };
  5. Object.defineProperty(exports, "__esModule", { value: true });
  6. var path_1 = __importDefault(require("path"));
  7. var interpret_1 = __importDefault(require("interpret"));
  8. var rechoir_1 = __importDefault(require("rechoir"));
  9. var findup_sync_1 = __importDefault(require("findup-sync"));
  10. exports.defaultWebpackConfigPath = function (cwd) {
  11. var extensions = Object.keys(interpret_1.default.extensions);
  12. var defaultConfigFileNames = ['webpack.config', 'webpackfile'];
  13. var configFileRegExp = "(" + defaultConfigFileNames.join('|') + ")(" + extensions.join('|') + ")";
  14. var configPath = findup_sync_1.default(configFileRegExp, {
  15. cwd: cwd,
  16. }) || path_1.default.join(cwd, 'webpack.config.js');
  17. return configPath;
  18. };
  19. exports.webpackConfig = function (cwd, configPath) {
  20. var resolvedConfigPath = (function () {
  21. if (!configPath) {
  22. return exports.defaultWebpackConfigPath(cwd);
  23. }
  24. if (path_1.default.isAbsolute(configPath)) {
  25. return path_1.default.resolve(configPath);
  26. }
  27. return path_1.default.resolve(cwd, configPath);
  28. })();
  29. rechoir_1.default.prepare(interpret_1.default.extensions, resolvedConfigPath);
  30. var config = require(resolvedConfigPath);
  31. return config.default || config;
  32. };
  33. //# sourceMappingURL=webpackHelpers.js.map