Skip to content

Commit 2d7f4e0

Browse files
committed
Fix missing .js extensions and import ordering
1 parent 73d3cb3 commit 2d7f4e0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

scripts/claude.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ import { existsSync, promises as fs } from 'node:fs'
99
import path from 'node:path'
1010
import { fileURLToPath } from 'node:url'
1111

12-
import { parseArgs } from '@socketsecurity/lib/argv/parse'
1312
import colors from 'yoctocolors-cjs'
1413

14+
import { parseArgs } from '@socketsecurity/lib/argv/parse.js'
15+
1516
const __dirname = path.dirname(fileURLToPath(import.meta.url))
1617
const rootPath = path.join(__dirname, '..')
1718
const parentPath = path.join(rootPath, '..')

src/objects.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Provides object validation and recursive freezing utilities.
44
*/
55

6-
import { isObject } from '@socketsecurity/lib/objects'
6+
import { isObject } from '@socketsecurity/lib/objects.js'
77

88
import { LOOP_SENTINEL } from './constants.js'
99

0 commit comments

Comments
 (0)