@modern-js/builder
Version:
Builder of modern.js.
69 lines (68 loc) • 2.99 kB
JavaScript
;
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var define_exports = {};
__export(define_exports, {
builderPluginDefine: () => builderPluginDefine
});
module.exports = __toCommonJS(define_exports);
var import_lodash = require("@modern-js/utils/lodash");
const builderPluginDefine = () => ({
name: "builder-plugin-define",
async setup(api) {
api.modifyBundlerChain(async (chain, { env, target, CHAIN_ID, bundler }) => {
const { getNodeEnv, removeTailSlash, applyOptionsChain } = await Promise.resolve().then(() => __toESM(require("@modern-js/utils")));
const config = api.getNormalizedConfig();
const publicPath = chain.output.get("publicPath");
const assetPrefix = publicPath && typeof publicPath === "string" ? publicPath : config.output.assetPrefix;
const builtinVars = {
"process.env.NODE_ENV": getNodeEnv(),
"process.env.ASSET_PREFIX": removeTailSlash(assetPrefix)
};
const globalVars = applyOptionsChain(builtinVars, config.source.globalVars, {
env,
target
});
const serializedVars = (0, import_lodash.mapValues)(globalVars, (value) => {
var _JSON_stringify;
return (_JSON_stringify = JSON.stringify(value)) !== null && _JSON_stringify !== void 0 ? _JSON_stringify : "undefined";
});
const defineExprs = config.source.define;
chain.plugin(CHAIN_ID.PLUGIN.DEFINE).use(bundler.DefinePlugin, [
{
...serializedVars,
...defineExprs
}
]);
});
}
});
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
builderPluginDefine
});