From 99b3f994f69a8cee3363972826484ac68b2a60d9 Mon Sep 17 00:00:00 2001 From: Steve 'Cutter' Blades Date: Thu, 21 Nov 2024 15:33:26 -0400 Subject: [PATCH] ci: correct json import for node 22 (#2683) --- rollup.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.mjs b/rollup.config.mjs index 8bbce27cd..f06f79070 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -7,7 +7,7 @@ import replace from '@rollup/plugin-replace' import clear from 'rollup-plugin-clear' // removed sizeSnapshot, as it is not compatible with ESM import { terser } from 'rollup-plugin-terser' -import pkg from './package.json' assert { type: 'json' } +import pkg from './package.json' with { type: 'json' } const __dirname = url.fileURLToPath(new URL('.', import.meta.url))