Skip to content

Commit

Permalink
fix: removed unnecessary undefined for optional parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
atassis committed Apr 28, 2023
1 parent 2133ef2 commit d2d0dc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export type RunScriptWebpackPluginOptions = {
autoRestart?: boolean;
args: string[];
cwd?: string;
env?: NodeJS.ProcessEnv | undefined;
env?: NodeJS.ProcessEnv;
keyboard: boolean;
name?: string;
nodeArgs: string[];
Expand Down

0 comments on commit d2d0dc8

Please sign in to comment.