Skip to content

Commit

Permalink
import json in rollup via with statement
Browse files Browse the repository at this point in the history
  • Loading branch information
bmuller committed Oct 10, 2024
1 parent 87af008 commit 4f7b713
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 20.12.2
nodejs 22.9.0
2 changes: 1 addition & 1 deletion packages/react/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { babel } from '@rollup/plugin-babel'
import pkg from './package.json' assert { type: 'json' }
import pkg from './package.json' with { type: 'json' }
import image from '@rollup/plugin-image'
import typescript from '@rollup/plugin-typescript'
import replace from '@rollup/plugin-replace'
Expand Down
2 changes: 1 addition & 1 deletion packages/vanilla/rollup.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { babel } from '@rollup/plugin-babel'
import pkg from './package.json' assert { type: 'json' }
import pkg from './package.json' with { type: 'json' }
import typescript from '@rollup/plugin-typescript'
import replace from '@rollup/plugin-replace'

Expand Down

0 comments on commit 4f7b713

Please sign in to comment.