Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
v8tenko committed Oct 22, 2024
1 parent a04ca6e commit f9b923f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/build/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const parser = yargs
type: 'boolean',
})
.group(['config', 'strict', 'quiet', 'help', 'version'], 'Common options:')
.version(typeof VERSION !== 'undefined' ? VERSION : '')
.version(typeof VERSION === 'undefined' ? '' : VERSION)
.help();

export class Build
Expand Down

0 comments on commit f9b923f

Please sign in to comment.