rolldown
Version:
Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.
41 lines (39 loc) • 1.08 kB
JavaScript
import "./shared/binding-DkT6owYZ.mjs";
import "./shared/logs-CSQ_UMWp.mjs";
import { i as makeBuiltinPluginCallable, n as BuiltinPlugin } from "./shared/normalize-string-or-regex-vZ5EI4ro.mjs";
import { r as esmExternalRequirePlugin } from "./shared/constructors-Xd4Pek8a.mjs";
//#region src/builtin-plugin/replace-plugin.ts
/**
* Replaces targeted strings in files while bundling.
*
* @example
* // Basic usage
* ```js
* replacePlugin({
* 'process.env.NODE_ENV': JSON.stringify('production'),
* __buildVersion: 15
* })
* ```
* @example
* // With options
* ```js
* replacePlugin({
* 'process.env.NODE_ENV': JSON.stringify('production'),
* __buildVersion: 15
* }, {
* preventAssignment: false,
* })
* ```
*/
function replacePlugin(values = {}, options = {}) {
Object.keys(values).forEach((key) => {
const value = values[key];
if (typeof value !== "string") values[key] = String(value);
});
return makeBuiltinPluginCallable(new BuiltinPlugin("builtin:replace", {
...options,
values
}));
}
//#endregion
export { esmExternalRequirePlugin, replacePlugin };