Skip to content

Commit

Permalink
fix: wrong request instance when run build
Browse files Browse the repository at this point in the history
  • Loading branch information
Val-istar-Guo committed Aug 3, 2022
1 parent 7d68f3a commit 4f1809e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export async function build(config: BuildConfig): Promise<void> {
outdir: config.outdir,
strict: config.strict,
envName: config.envName,
request: config.request || 'keq',
request: config.request,
fileNamingStyle: config.fileNamingStyle || 'snakeCase',
env,
}
Expand Down
2 changes: 1 addition & 1 deletion src/interface/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ export interface Options {
*/
strict?: boolean
fileNamingStyle?: NamingStyle
request: string
request?: string
env?: Record<string, string>
}

0 comments on commit 4f1809e

Please sign in to comment.