| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import { n as __toESM, t as require_binding } from "./shared/binding-s-V_wTpj.mjs";
- import { n as onExit, t as watch } from "./shared/watch-Cixa7HbR.mjs";
- import { a as RolldownMagicString, b as RUNTIME_MODULE_ID, x as VERSION } from "./shared/bindingify-input-options-DYpBf1OG.mjs";
- import { t as rolldown } from "./shared/rolldown-BLMDGLfI.mjs";
- import { t as defineConfig } from "./shared/define-config-DJOr6Iwt.mjs";
- import { isMainThread } from "node:worker_threads";
- //#region src/setup.ts
- var import_binding = /* @__PURE__ */ __toESM(require_binding(), 1);
- if (isMainThread) {
- const subscriberGuard = (0, import_binding.initTraceSubscriber)();
- onExit(() => {
- subscriberGuard?.close();
- });
- }
- //#endregion
- //#region src/api/build.ts
- /**
- * The API similar to esbuild's `build` function.
- *
- * @example
- * ```js
- * import { build } from 'rolldown';
- *
- * const result = await build({
- * input: 'src/main.js',
- * output: {
- * file: 'bundle.js',
- * },
- * });
- * console.log(result);
- * ```
- *
- * @experimental
- * @category Programmatic APIs
- */
- async function build(options) {
- if (Array.isArray(options)) return Promise.all(options.map((opts) => build(opts)));
- else {
- const { output, write = true, ...inputOptions } = options;
- const build = await rolldown(inputOptions);
- try {
- if (write) return await build.write(output);
- else return await build.generate(output);
- } finally {
- await build.close();
- }
- }
- }
- //#endregion
- export { RUNTIME_MODULE_ID, RolldownMagicString, VERSION, build, defineConfig, rolldown, watch };
|