diff --git a/src/panels/home-view-provider.ts b/src/panels/home-view-provider.ts index 4cc619f..6947afd 100644 --- a/src/panels/home-view-provider.ts +++ b/src/panels/home-view-provider.ts @@ -6,7 +6,7 @@ import * as path from 'path'; import { getNonce } from '../utilities/getNonce'; import { getUri } from '../utilities/getUri'; import { EventEmitter } from 'stream'; -import { MinecraftCapabilities } from '../Session'; +import { MinecraftCapabilities } from '../session'; export class HomeViewProvider implements vscode.WebviewViewProvider { public static readonly viewType = 'minecraft-debugger-home-panel'; diff --git a/src/server-debug-adapter-factory.ts b/src/server-debug-adapter-factory.ts index f509d81..2f3ed6b 100644 --- a/src/server-debug-adapter-factory.ts +++ b/src/server-debug-adapter-factory.ts @@ -3,7 +3,7 @@ import * as Net from 'net'; import * as vscode from 'vscode'; import { EventEmitter } from 'stream'; -import { Session } from './Session'; +import { Session } from './session'; import { StatsProvider } from './stats/stats-provider'; import { HomeViewProvider } from './panels/home-view-provider'; diff --git a/src/Session.ts b/src/session.ts similarity index 99% rename from src/Session.ts rename to src/session.ts index 20f2ce4..5eab0f5 100644 --- a/src/Session.ts +++ b/src/session.ts @@ -31,9 +31,9 @@ import { MessageStreamParser } from './message-stream-parser'; import { SourceMaps } from './source-maps'; import { StatMessageModel, StatsProvider } from './stats/stats-provider'; import { HomeViewProvider } from './panels/home-view-provider'; +import { isUUID } from './utils'; import * as path from 'path'; import * as fs from 'fs'; -import { isUUID } from './Utils'; interface PendingResponse { onSuccess?: Function; diff --git a/src/source-maps.ts b/src/source-maps.ts index 9340245..5e9574e 100644 --- a/src/source-maps.ts +++ b/src/source-maps.ts @@ -1,7 +1,7 @@ // Copyright (C) Microsoft Corporation. All rights reserved. import { BasicSourceMapConsumer, MappedPosition, NullablePosition, SourceMapConsumer } from 'source-map'; -import { normalizePath, normalizePathForRemote } from './Utils'; +import { normalizePath, normalizePathForRemote } from './utils'; import * as fs from 'fs'; import * as path from 'path'; diff --git a/src/Utils.test.ts b/src/utils.test.ts similarity index 99% rename from src/Utils.test.ts rename to src/utils.test.ts index f7de110..af9cc46 100644 --- a/src/Utils.test.ts +++ b/src/utils.test.ts @@ -2,7 +2,7 @@ import * as os from 'os'; import { describe, it, expect } from 'vitest'; -import { normalizePath, normalizePathForRemote, isUUID } from './Utils'; +import { normalizePath, normalizePathForRemote, isUUID } from './utils'; describe('Utils', () => { describe('normalizePath', () => { diff --git a/src/Utils.ts b/src/utils.ts similarity index 100% rename from src/Utils.ts rename to src/utils.ts