Skip to content

Commit d0e7f69

Browse files
committed
Fix file name casing
1 parent 6810208 commit d0e7f69

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/cli/CLI.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { ChildProcessWithoutNullStreams } from 'node:child_process';
22
import { spawn } from 'node:child_process';
33

44
import { getEnvConfig } from '../config/config';
5-
import type { Logger } from '../util/logger';
5+
import type { Logger } from '../util/Logger';
66

77
const NEWLINE_SEPARATOR = /\r\n|\r|\n/;
88
const STDOUT_PREFIX = /^[a-z]+: /;

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Terminal } from './terminal/Terminal';
77
import { TerminalProvider } from './terminal/TerminalProvider';
88
import { ScriptFileProvider } from './util/ScriptFileProvider';
99
import { ProjectFilesProvider } from './solution/ProjectFilesProvider';
10-
import { Logger } from './util/logger';
10+
import { Logger } from './util/Logger';
1111
import { OUTPUT_CHANNEL_ID } from './constants/constants';
1212
import { CLI } from './cli/CLI';
1313

File renamed without changes.

0 commit comments

Comments
 (0)