Skip to content

Commit

Permalink
fix: replace assert with "with"
Browse files Browse the repository at this point in the history
  • Loading branch information
xpadev-net committed Nov 19, 2024
1 parent c2b5e62 commit f3612a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rollup.config.dts.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import pkg from "./package.json" assert { type: "json" };
import pkg from "./package.json" with { type: "json" };
import { fileURLToPath } from "url";
import * as path from "path";
import dts from "rollup-plugin-dts";
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import babel from "@rollup/plugin-babel";
import typescript from "@rollup/plugin-typescript";
import { nodeResolve } from "@rollup/plugin-node-resolve";
import pkg from "./package.json" assert { type: "json" };
import pkg from "./package.json" with { type: "json" };
import { fileURLToPath } from "url";
import * as path from "path";
const banner = `/*!
Expand Down

0 comments on commit f3612a9

Please sign in to comment.