Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarosabu committed Oct 16, 2024
1 parent 2b48927 commit 4c3582a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import { formatHeader, handleError, konsola } from './utils'
import { getProgram } from './program'
import './commands/login'
import './commands/logout'
import { APIError } from './utils/error/api-error'
import { loginWithEmailAndPassword, loginWithToken } from './commands/login/actions'

dotenv.config() // This will load variables from .env into process.env
const program = getProgram()
Expand All @@ -26,7 +24,7 @@ program.on('command:*', () => {
konsola.br() // Add a line break
})

program.command('test').action(async (options) => {
program.command('test').action(async () => {
konsola.title(`Test`, '#8556D3', 'Attempting a test...')
konsola.error('This is an error message')
/* try {
Expand Down

0 comments on commit 4c3582a

Please sign in to comment.