Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-kotulski committed Feb 28, 2024
1 parent 981a76a commit 155fea1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion editor/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as os from 'os';
import * as lc from "vscode-languageclient/node";
import { Ctx } from "./ctx";
import { LabeledVersion } from './labeledVersion';
import { InfoPlistManager } from './Infoplist';
import { InfoPlistManager } from './infoplist';

export class Config {

Expand Down
3 changes: 2 additions & 1 deletion editor/src/ctx.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import * as vscode from 'vscode';
import * as Commands from "./commands";
import { Config } from "./config";
import { LabeledVersion, ResultUpdate, ToolPreparator } from "./toolPreparator";
import { LabeledVersion } from './labeledVersion';
import { ResultUpdate, ToolPreparator } from "./toolPreparator";
import {
LanguageClient,
LanguageClientOptions,
Expand Down
2 changes: 1 addition & 1 deletion editor/src/toolPreparator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as path from 'path';
import * as vscode from 'vscode';
import * as Logger from './logger'
import { LabeledVersion } from './labeledVersion';
import { InfoPlistManager } from './Infoplist';
import { InfoPlistManager } from './infoplist';

export interface ResultUpdate {
path: string;
Expand Down

0 comments on commit 155fea1

Please sign in to comment.