Skip to content

Commit

Permalink
[hotfix] Changed file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
erdemkosk committed Nov 19, 2023
1 parent 8567948 commit 6d90f49
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion lib/command/CommandInvoker.ts
@@ -1,4 +1,4 @@
import { type Command } from './command'
import { type Command } from './Command'

// eslint-disable-next-line @typescript-eslint/no-extraneous-class
export class CommandInvoker {
Expand Down
2 changes: 1 addition & 1 deletion lib/command/commandTypes/CompareCommand.ts
@@ -1,4 +1,4 @@
import { Command } from '../command'
import { Command } from '../Command'
import { compareEnvFiles } from '../../handler/envHandler'
import { getEnvFilesRecursively } from '../../handler/fileHandler'
import Table from 'cli-table3'
Expand Down
2 changes: 1 addition & 1 deletion lib/command/commandTypes/LsCommand.ts
@@ -1,4 +1,4 @@
import { Command } from '../command'
import { Command } from '../Command'
import { getValuesInEnv } from '../../handler/envHandler'
import { getEnvFilesRecursively } from '../../handler/fileHandler'
import Table from 'cli-table3'
Expand Down
2 changes: 1 addition & 1 deletion lib/command/commandTypes/RestoreCommand.ts
@@ -1,4 +1,4 @@
import { Command } from '../command'
import { Command } from '../Command'
import { restoreEnvFile } from '../../handler/envHandler'
import chalk from 'chalk'

Expand Down
2 changes: 1 addition & 1 deletion lib/command/commandTypes/RevertCommand.ts
@@ -1,4 +1,4 @@
import { Command } from '../command'
import { Command } from '../Command'
import { updateEnvFile, getUniqueEnvNames } from '../../handler/envHandler'
import { getEnvFilesRecursively } from '../../handler/fileHandler'
import { getEnvVersions } from '../../handler/historyHandler'
Expand Down
2 changes: 1 addition & 1 deletion lib/command/commandTypes/SyncCommand.ts
@@ -1,4 +1,4 @@
import { Command } from '../command'
import { Command } from '../Command'
import { syncEnvFile } from '../../handler/envHandler'
import chalk from 'chalk'

Expand Down
2 changes: 1 addition & 1 deletion lib/command/commandTypes/UpdateAllCommand.ts
@@ -1,4 +1,4 @@
import { Command } from '../command'
import { Command } from '../Command'
import { updateAllEnvFile, promptForEnvVariable } from '../../handler/envHandler'
import chalk from 'chalk'
import inquirer from 'inquirer'
Expand Down
2 changes: 1 addition & 1 deletion lib/command/commandTypes/UpdateCommand.ts
@@ -1,4 +1,4 @@
import { Command } from '../command'
import { Command } from '../Command'
import { getUniqueEnvNames, updateEnvFile } from '../../handler/envHandler'
import { getEnvFilesRecursively } from '../../handler/fileHandler'
import chalk from 'chalk'
Expand Down
18 changes: 9 additions & 9 deletions lib/command/index.ts
@@ -1,10 +1,10 @@
export * from './commandTypes/lsCommand'
export * from './commandTypes/syncCommand'
export * from './commandTypes/updateAllCommand'
export * from './commandTypes/updateCommand'
export * from './commandTypes/compareCommand'
export * from './commandTypes/revertCommand'
export * from './commandTypes/restoreCommand'
export * from './commandInvoker'
export * from './command'
export * from './commandTypes/LsCommand'
export * from './commandTypes/SyncCommand'
export * from './commandTypes/UpdateAllCommand'
export * from './commandTypes/UpdateCommand'
export * from './commandTypes/CompareCommand'
export * from './commandTypes/RevertCommand'
export * from './commandTypes/RestoreCommand'
export * from './CommandInvoker'
export * from './Command'
export * from './commandFactory'
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6d90f49

Please sign in to comment.