UNPKG

@modern-js/module-tools-v2

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

42 lines (41 loc) 2.51 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.watchPlugin = exports.externalPlugin = void 0; function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } const watchPlugin = config => { return { name: 'watch-plugin', apply(compiler) { compiler.hooks.watchChange.tap('watch-plugin', async () => { const { watchSectionTitle } = await Promise.resolve().then(() => _interopRequireWildcard(require("./log"))); const { SectionTitleStatus } = await Promise.resolve().then(() => _interopRequireWildcard(require("../constants/log"))); const titleText = `[${config.buildType === 'bundle' ? 'Bundle' : 'Bundleless'}:${config.format}_${config.target}]`; console.info(await watchSectionTitle(titleText, SectionTitleStatus.Log)); }); } }; }; exports.watchPlugin = watchPlugin; const externalPlugin = (config, options) => { return { name: 'external-plugin', apply(compiler) { compiler.hooks.initialize.tapPromise('external-plugin', async () => { const { getFinalExternals } = await Promise.resolve().then(() => _interopRequireWildcard(require("./builder"))); const finalExternals = await getFinalExternals(config, options); compiler.config.external = finalExternals; }); } }; }; exports.externalPlugin = externalPlugin; //# sourceMappingURL=libuild-plugins.js.map