File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " synckit " : patch
3
+ ---
4
+
5
+ fix: typo of ` SYNCKIT_EXEC_ARGV ` environment variable
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export type TsRunner = ValueOf<typeof TsRunner>
40
40
const {
41
41
SYNCKIT_BUFFER_SIZE ,
42
42
SYNCKIT_TIMEOUT ,
43
- SYNCKIT_EXEC_ARV ,
43
+ SYNCKIT_EXEC_ARGV ,
44
44
SYNCKIT_TS_RUNNER ,
45
45
} = process . env
46
46
@@ -53,7 +53,7 @@ export const DEFAULT_TIMEOUT = SYNCKIT_TIMEOUT ? +SYNCKIT_TIMEOUT : undefined
53
53
export const DEFAULT_WORKER_BUFFER_SIZE = DEFAULT_BUFFER_SIZE || 1024
54
54
55
55
/* istanbul ignore next */
56
- export const DEFAULT_EXEC_ARGV = SYNCKIT_EXEC_ARV ?. split ( ',' ) || [ ]
56
+ export const DEFAULT_EXEC_ARGV = SYNCKIT_EXEC_ARGV ?. split ( ',' ) || [ ]
57
57
58
58
export const DEFAULT_TS_RUNNER = ( SYNCKIT_TS_RUNNER ||
59
59
TsRunner . TsNode ) as TsRunner
You can’t perform that action at this time.
0 commit comments