Skip to content

Commit d25a123

Browse files
authored
Cleanup (#22)
1 parent aecda69 commit d25a123

13 files changed

Lines changed: 23 additions & 606 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"vscode": {
66
"extensions": [
77
"vscjava.vscode-java-pack", // Java Support (Red Hat)
8-
"${containerWorkspaceFolder}/client/liquid-java-0.0.15.vsix" // Latte Extension
8+
"AlcidesFonseca.liquid-java" // LiquidJava Extension
99
]
1010
}
1111
},
@@ -14,6 +14,6 @@
1414
"version": "21" // Installs Java 21 (Change if needed)
1515
}
1616
},
17-
"postCreateCommand": "code --install-extension .devcontainer/latte-vscode.vsix && npm install"
17+
"postCreateCommand": "npm install"
1818
}
1919

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131
working-directory: ./client
3232
run: vsce publish -p ${{ secrets.VSCE_TOKEN }}
3333

34-
- name: Publish to Open VSX
34+
- name: Publish to Open VSX Marketplace
3535
working-directory: ./client
3636
run: npx ovsx publish --pat ${{ secrets.OVSX_TOKEN }}

client/USAGE.md

Lines changed: 0 additions & 125 deletions
This file was deleted.

client/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package-previous

Lines changed: 0 additions & 129 deletions
This file was deleted.

client/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as child_process from "child_process";
55
import { LanguageClient, LanguageClientOptions, StreamInfo, ServerOptions, State } from "vscode-languageclient";
66
import { LiquidJavaLogger, createLogger } from "./logging";
77
import { applyItalicOverlay } from "./decorators";
8-
import { connectToPort, findJavaExecutable, getAvailablePort, isJarPresent, killProcess } from "./utils";
8+
import { connectToPort, findJavaExecutable, getAvailablePort, killProcess } from "./utils";
99
import { SERVER_JAR_FILENAME, DEBUG_MODE, DEBUG_PORT } from "./constants";
1010

1111
let serverProcess: child_process.ChildProcess;

0 commit comments

Comments
 (0)