From 5b3df41b57952ea649696cb3bb104cd7285febaf Mon Sep 17 00:00:00 2001 From: Anna Wen <54281166+annawen1@users.noreply.github.com> Date: Wed, 11 Dec 2024 09:30:11 -0500 Subject: [PATCH] chore: swap assert syntax with 'with' (#18236) Co-authored-by: Taylor Jones --- packages/web-components/tasks/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web-components/tasks/build.js b/packages/web-components/tasks/build.js index 05904169db1a..8e56224b0028 100644 --- a/packages/web-components/tasks/build.js +++ b/packages/web-components/tasks/build.js @@ -23,7 +23,7 @@ import path from 'path'; import postcss from 'postcss'; import typescript from '@rollup/plugin-typescript'; -import * as packageJson from '../package.json' assert { type: 'json' }; +import * as packageJson from '../package.json' with { type: 'json' }; const __dirname = path.dirname(fileURLToPath(import.meta.url));