Skip to content

Commit 89dbc38

Browse files
authored
fix: use module with syntax for json files (#3673)
1 parent e4464a9 commit 89dbc38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: scripts/cli.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { writeFileSync } from 'fs';
22
import * as utils from './utils.mjs';
3-
import cliJSON from './data/cli.json' assert { type: 'json' };
4-
import cliOverrides from './data/meta-override.json' assert { type: 'json' };
3+
import cliJSON from './data/cli.json' with { type: 'json' };
4+
import cliOverrides from './data/meta-override.json' with { type: 'json' };
55

66
const commandToKebab = (str) =>
77
str

0 commit comments

Comments
 (0)