aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/cloudflare/src/utils/rewriteWasmImportPath.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/cloudflare/src/utils/rewriteWasmImportPath.ts')
-rw-r--r--packages/integrations/cloudflare/src/utils/rewriteWasmImportPath.ts29
1 files changed, 0 insertions, 29 deletions
diff --git a/packages/integrations/cloudflare/src/utils/rewriteWasmImportPath.ts b/packages/integrations/cloudflare/src/utils/rewriteWasmImportPath.ts
deleted file mode 100644
index c266f19b1..000000000
--- a/packages/integrations/cloudflare/src/utils/rewriteWasmImportPath.ts
+++ /dev/null
@@ -1,29 +0,0 @@
-import { basename } from 'node:path';
-import type esbuild from 'esbuild';
-
-/**
- *
- * @param relativePathToAssets - relative path from the final location for the current esbuild output bundle, to the assets directory.
- */
-export function rewriteWasmImportPath({
- relativePathToAssets,
-}: {
- relativePathToAssets: string;
-}): esbuild.Plugin {
- return {
- name: 'wasm-loader',
- setup(build) {
- build.onResolve({ filter: /.*\.wasm.mjs$/ }, (args) => {
- const updatedPath = [
- relativePathToAssets.replaceAll('\\', '/'),
- basename(args.path).replace(/\.mjs$/, ''),
- ].join('/');
-
- return {
- path: updatedPath,
- external: true, // mark it as external in the bundle
- };
- });
- },
- };
-}