[32788f42] feat: implement database persistence, modernized UI with Tailwind, and Calendly-integrated QR card generator for Fotograf.de scraper
This commit is contained in:
41
fotograf-de-scraper/frontend/node_modules/rolldown/dist/plugins-index.mjs
generated
vendored
Normal file
41
fotograf-de-scraper/frontend/node_modules/rolldown/dist/plugins-index.mjs
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
import "./shared/binding-BV_UWDF3.mjs";
|
||||
import { a as makeBuiltinPluginCallable, n as BuiltinPlugin } from "./shared/normalize-string-or-regex-D7wlw16t.mjs";
|
||||
import { t as esmExternalRequirePlugin } from "./shared/constructors-DqC7XSXy.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,
|
||||
* })
|
||||
* ```
|
||||
*
|
||||
* @see https://rolldown.rs/builtin-plugins/replace
|
||||
* @category Builtin Plugins
|
||||
*/
|
||||
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 };
|
||||
Reference in New Issue
Block a user