Skip to content

Commit 89b297d

Browse files
committed
Fix import of node:path/relative
1 parent d7752e7 commit 89b297d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "circuitscan",
3-
"version": "0.0.26-alpha",
3+
"version": "0.0.27-alpha",
44
"main": "cli.js",
55
"type": "module",
66
"author": "numtel <[email protected]>",

src/circom/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {readFileSync} from 'node:fs';
2-
import {dirname} from 'node:path';
2+
import {relative, dirname} from 'node:path';
33

44
import {isHex} from 'viem';
55

src/circuitscan.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {relative, join} from 'node:path';
1+
import {join} from 'node:path';
22
import {readFileSync, appendFileSync} from 'node:fs';
33
import {homedir} from 'node:os';
44

0 commit comments

Comments
 (0)