Skip to content

Commit

Permalink
Fixing build error with Node 22
Browse files Browse the repository at this point in the history
  • Loading branch information
Pauan committed Sep 27, 2024
1 parent 667813e commit 3813b90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdk/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import typescript from "rollup-plugin-typescript2";
import replace from "@rollup/plugin-replace";
import $package from "./package.json" assert { type: "json" };
import $package from "./package.json" with { type: "json" };

const networks = [
"testnet",
Expand Down
2 changes: 1 addition & 1 deletion sdk/rollup.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import typescript from "rollup-plugin-typescript2";
import replace from "@rollup/plugin-replace";
import { globSync } from "glob";
import $package from "./package.json" assert { type: "json" };
import $package from "./package.json" with { type: "json" };

const networks = [
"testnet",
Expand Down

0 comments on commit 3813b90

Please sign in to comment.