Skip to content

Commit 3c3f7b6

Browse files
committed
replace 'assert' with 'with' to appease rollup
1 parent 4e93e83 commit 3c3f7b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ojs/quarto-ojs-runtime/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import nodeResolve from '@rollup/plugin-node-resolve';
22
import commonjs from '@rollup/plugin-commonjs';
33
import { terser } from "rollup-plugin-terser";
4-
import meta from "./package.json" assert { type: "json" };
4+
import meta from "./package.json" with { type: "json" };
55
import json from "@rollup/plugin-json";
66

77
const config = {

0 commit comments

Comments
 (0)