Skip to content

Commit 661c5e2

Browse files
committed
also remove from example-vite-encryption
1 parent 35c2fe6 commit 661c5e2

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

demos/example-vite-encryption/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"devDependencies": {
1717
"@swc/core": "~1.6.0",
1818
"vite": "^5.0.12",
19-
"vite-plugin-top-level-await": "^1.4.1",
2019
"vite-plugin-wasm": "^3.3.0"
2120
}
2221
}

demos/example-vite-encryption/vite.config.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import wasm from 'vite-plugin-wasm';
2-
import topLevelAwait from 'vite-plugin-top-level-await';
32
import { defineConfig } from 'vite';
43

54
// https://vitejs.dev/config/
@@ -18,9 +17,9 @@ export default defineConfig({
1817
// https://github.com/vitejs/vite/issues/11672#issuecomment-1415820673
1918
exclude: ['@journeyapps/wa-sqlite', '@powersync/web']
2019
},
21-
plugins: [wasm(), topLevelAwait()],
20+
plugins: [wasm()],
2221
worker: {
2322
format: 'es',
24-
plugins: () => [wasm(), topLevelAwait()]
23+
plugins: () => [wasm()]
2524
}
2625
});

pnpm-lock.yaml

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)