Skip to content

Commit 58606e2

Browse files
committed
fix: eslint issues
1 parent a0d4bf1 commit 58606e2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/cli/src/commands/install.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { getContentTypes } from '../utils/content-types';
55
import { getAvailableAddons, getPremiumAddons } from '../utils/addons';
66
import { installPackage } from '../utils/package-manager';
77
import { logger } from '../utils/logger';
8-
import { licenseSetup } from './subcommands/license-setup';
98
import { enableContentTypes } from './subcommands/enable-content-types';
109

1110
export async function install() {

packages/cli/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { Command } from 'commander';
44
import chalk from 'chalk';
55
import { install } from './commands/install';
66
import { enable } from './commands/enable';
7-
import { setupLicense } from './commands/license-setup';
87

98
const program = new Command();
109

@@ -44,6 +43,7 @@ program
4443
// try {
4544
// await setupLicense();
4645
// } catch (error) {
46+
// eslint-disable-next-line max-len
4747
// console.error(chalk.red('Error:'), error instanceof Error ? error.message : 'An unknown error occurred');
4848
// process.exit(1);
4949
// }

0 commit comments

Comments
 (0)