Преглед изворни кода

Update pridepack config

Only load wasm module for CJS builds.
master
TheoryOfNekomata пре 1 година
родитељ
комит
5a7d0fd4d1
2 измењених фајлова са 11 додато и 6 уклоњено
  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 Прегледај датотеку

@@ -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 Прегледај датотеку

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

Loading…
Откажи
Сачувај