| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- import { n as __toESM, t as require_binding } from "./binding-C5G6_6ql.mjs";
- import { a as bindingifySourcemap, n as normalizeBindingError } from "./error-CP8smW_P.mjs";
- //#region src/utils/minify.ts
- var import_binding = /* @__PURE__ */ __toESM(require_binding(), 1);
- /**
- * Minify asynchronously.
- *
- * Note: This function can be slower than {@linkcode minifySync} due to the overhead of spawning a thread.
- *
- * @category Utilities
- * @experimental
- */
- async function minify(filename, sourceText, options) {
- const inputMap = bindingifySourcemap(options?.inputMap);
- const result = await (0, import_binding.minify)(filename, sourceText, options);
- if (result.map && inputMap) result.map = {
- version: 3,
- ...(0, import_binding.collapseSourcemaps)([inputMap, bindingifySourcemap(result.map)])
- };
- return result;
- }
- /**
- * Minify synchronously.
- *
- * @category Utilities
- * @experimental
- */
- function minifySync(filename, sourceText, options) {
- const inputMap = bindingifySourcemap(options?.inputMap);
- const result = (0, import_binding.minifySync)(filename, sourceText, options);
- if (result.map && inputMap) result.map = {
- version: 3,
- ...(0, import_binding.collapseSourcemaps)([inputMap, bindingifySourcemap(result.map)])
- };
- return result;
- }
- //#endregion
- //#region src/utils/transform.ts
- /**
- * Transpile a JavaScript or TypeScript into a target ECMAScript version, asynchronously.
- *
- * Note: This function can be slower than `transformSync` due to the overhead of spawning a thread.
- *
- * @param filename The name of the file being transformed. If this is a
- * relative path, consider setting the {@linkcode TransformOptions#cwd} option.
- * @param sourceText The source code to transform.
- * @param options The transform options including tsconfig and inputMap. See {@linkcode TransformOptions} for more information.
- * @param cache Optional tsconfig cache for reusing resolved tsconfig across multiple transforms.
- * Only used when `options.tsconfig` is `true`.
- *
- * @returns a promise that resolves to an object containing the transformed code,
- * source maps, and any errors that occurred during parsing or transformation.
- *
- * @category Utilities
- * @experimental
- */
- async function transform(filename, sourceText, options, cache) {
- const result = await (0, import_binding.enhancedTransform)(filename, sourceText, options, cache);
- return {
- ...result,
- errors: result.errors.map(normalizeBindingError),
- warnings: result.warnings.map((w) => w.field0)
- };
- }
- /**
- * Transpile a JavaScript or TypeScript into a target ECMAScript version.
- *
- * @param filename The name of the file being transformed. If this is a
- * relative path, consider setting the {@linkcode TransformOptions#cwd} option.
- * @param sourceText The source code to transform.
- * @param options The transform options including tsconfig and inputMap. See {@linkcode TransformOptions} for more information.
- * @param cache Optional tsconfig cache for reusing resolved tsconfig across multiple transforms.
- * Only used when `options.tsconfig` is `true`.
- *
- * @returns an object containing the transformed code, source maps, and any errors
- * that occurred during parsing or transformation.
- *
- * @category Utilities
- * @experimental
- */
- function transformSync(filename, sourceText, options, cache) {
- const result = (0, import_binding.enhancedTransformSync)(filename, sourceText, options, cache);
- return {
- ...result,
- errors: result.errors.map(normalizeBindingError),
- warnings: result.warnings.map((w) => w.field0)
- };
- }
- //#endregion
- export { minifySync as a, minify as i, transform as n, transformSync as r, import_binding as t };
|