Skip to content

Commit

Permalink
Merge pull request #6884 from LedgerHQ/support/ethereum-provider-impo…
Browse files Browse the repository at this point in the history
…rt-assert

chore(ethereum-provider): remove import assert from rollup config
  • Loading branch information
valpinkman committed May 20, 2024
2 parents 879fda4 + a0b8b16 commit 6db18ce
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libs/ethereum-provider/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import { createRequire } from "node:module";
import dts from "rollup-plugin-dts";
import resolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import esbuild from "rollup-plugin-esbuild";
import pkg from "./package.json" assert { type: "json" };

const require = createRequire(import.meta.url);
const pkg = require("./package.json");

/**
* @param {import('rollup').RollupOptions} config
Expand Down

0 comments on commit 6db18ce

Please sign in to comment.