Skip to content

Commit d5958f9

Browse files
committed
fix: type import
1 parent 233ef20 commit d5958f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/nightly.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { execSync, ExecSyncOptionsWithBufferEncoding } from 'node:child_process';
1+
import { type ExecSyncOptionsWithBufferEncoding, execSync } from 'node:child_process';
22
import { appendFileSync, existsSync, readdirSync, readFileSync } from 'node:fs';
33
import { resolve } from 'node:path';
44
import { exit } from 'node:process';
5-
import { parseArgs, type ParseArgsOptionsConfig } from 'node:util';
5+
import { type ParseArgsOptionsConfig, parseArgs } from 'node:util';
66

77
const options: ParseArgsOptionsConfig = {
88
platform: {

0 commit comments

Comments
 (0)