Ver a proveniência

Update pridepack config

Only load wasm module for CJS builds.
master
ascendente
cometimento
5a7d0fd4d1
2 ficheiros alterados com 11 adições e 6 eliminações
  1. +11
    -5
      examples/cli/pridepack.config.js
  2. +0
    -1
      examples/cli/src/packages/@modal-sh/mio-ai

+ 11
- 5
examples/cli/pridepack.config.js Ver ficheiro

@@ -1,9 +1,15 @@
const { wasmLoader } = require('esbuild-plugin-wasm');
module.exports = {
target: 'esnext',
plugins: () => [
wasmLoader({
mode: 'deferred',
}),
],
plugins: ({ isCJS }) => {
if (isCJS) {
return [
wasmLoader({
mode: 'deferred',
}),
];
}

return [];
},
}

+ 0
- 1
examples/cli/src/packages/@modal-sh/mio-ai Ver ficheiro

@@ -1 +0,0 @@
../../../../../

Carregando…
Cancelar
Guardar