Skip to content

Commit 477dc76

Browse files
Clean up dev dependencies (#3710)
* Remove polyfill dep and fix tests * remove `ethersproject/abi` dep * Add explanatory note on calldata * fix test * remove console log * Pin browser deps again * pin browser deps again * add ethersproject ABI back * replace abi with ethersv6 * Update packages/vm/test/api/customChain.spec.ts Co-authored-by: Jochem Brouwer <[email protected]> * Add ethers back to customChains test. * Fix another example * fix another example --------- Co-authored-by: Jochem Brouwer <[email protected]>
1 parent a40f4e6 commit 477dc76

File tree

11 files changed

+3694
-1426
lines changed

11 files changed

+3694
-1426
lines changed

config/vitest.config.browser.mts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { defineConfig } from 'vitest/config'
2-
import { nodePolyfills } from 'vite-plugin-node-polyfills'
32
import wasm from 'vite-plugin-wasm'
43

54
const config = defineConfig({
@@ -16,13 +15,10 @@ const config = defineConfig({
1615
},
1716
plugins: [
1817
wasm(),
19-
nodePolyfills({
20-
include: ['util', 'fs', 'buffer', 'path'],
21-
}),
2218
],
2319
optimizeDeps: {
20+
2421
exclude: ['kzg-wasm'],
25-
include: ['vite-plugin-node-polyfills/shims/buffer', 'vite-plugin-node-polyfills/shims/global', 'vite-plugin-node-polyfills/shims/process']
2622
},
2723
})
2824

0 commit comments

Comments
 (0)