Skip to content

Commit

Permalink
fix sdk dev build (missing wasm plugin)
Browse files Browse the repository at this point in the history
  • Loading branch information
nohaapav committed Feb 19, 2024
1 parent 047f426 commit ad94d19
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/sdk/esbuild.dev.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import esbuild from 'esbuild';

import { wasmLoader } from 'esbuild-plugin-wasm';
import { esmConfig, getPackageJson } from '../../esbuild.config.mjs';

const packageJson = getPackageJson(import.meta.url);
const peerDependencies = packageJson.peerDependencies || {};

const plugins = [];

const plugins = [wasmLoader({ mode: 'embedded' })];
const options = {
...esmConfig,
bundle: true,
Expand Down

0 comments on commit ad94d19

Please sign in to comment.