Skip to content

Commit d2d95d5

Browse files
authored
Merge pull request #45 from mkantor/import-specifiers
Scope some `import` specifiers
2 parents 052cfe7 + eb15d26 commit d2d95d5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/language/cli/input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import either, { type Either } from '@matt.kantor/either'
2-
import { parseArgs } from 'util'
2+
import { parseArgs } from 'node:util'
33
import { type JsonValueForbiddingSymbolicKeys } from '../parsing.js'
44

55
export type InvalidJsonError = {

src/language/cli/output.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import either, { type Either } from '@matt.kantor/either'
2-
import { parseArgs } from 'util'
2+
import { parseArgs } from 'node:util'
33
import { type SyntaxTree } from '../parsing/syntax-tree.js'
44
import {
55
prettyJson,

src/language/runtime/keywords.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import either from '@matt.kantor/either'
22
import option, { type Option } from '@matt.kantor/option'
3-
import { parseArgs } from 'util'
3+
import { parseArgs } from 'node:util'
44
import { writeOutput } from '../cli/output.js'
55
import { keywordHandlers as compilerKeywordHandlers } from '../compiling.js'
66
import type { Atom } from '../parsing.js'

0 commit comments

Comments
 (0)