Skip to content

Commit

Permalink
fix(cli): eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
eikeland committed Oct 7, 2024
1 parent 841cb8e commit ca3358c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/cli/src/bin/main.app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { createExportConfig } from './create-export-config.js';
import { uploadExportConfig } from './upload-export-config.js';
import { fileURLToPath } from 'node:url';
import { resolve, join } from 'node:path';
import { version } from '../../../app/src/version';

export default (program: Command) => {
const app = program
Expand Down Expand Up @@ -134,7 +133,7 @@ export default (program: Command) => {
if (!opt.env) {
console.error(
chalk.redBright(
'Missing required option --env when publishing, see --help for usage'
'Missing required option --env when publishing, see --help for usage',
),
);
return;
Expand Down

0 comments on commit ca3358c

Please sign in to comment.