From f9b923f8a76f0d9851d1e7a89df78526c4402fdd Mon Sep 17 00:00:00 2001 From: Gleb Voitenko Date: Tue, 22 Oct 2024 13:03:57 +0300 Subject: [PATCH] fix: linter --- src/commands/build/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/build/index.ts b/src/commands/build/index.ts index da979e4f..f41df8c9 100644 --- a/src/commands/build/index.ts +++ b/src/commands/build/index.ts @@ -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