Initial code

This commit is contained in:
2025-03-11 17:20:20 +00:00
parent 94b70b0c40
commit 567427b29b
12 changed files with 652 additions and 0 deletions

33
.replit Normal file
View File

@@ -0,0 +1,33 @@
modules = ["nodejs-20"]
[nix]
channel = "stable-24_05"
[workflows]
runButton = "Project"
[[workflows.workflow]]
name = "Project"
mode = "parallel"
author = "agent"
[[workflows.workflow.tasks]]
task = "workflow.run"
args = "Build VSCode Extension"
[[workflows.workflow]]
name = "Build VSCode Extension"
author = "agent"
[workflows.workflow.metadata]
agentRequireRestartOnSave = false
[[workflows.workflow.tasks]]
task = "packager.installForAll"
[[workflows.workflow.tasks]]
task = "shell.exec"
args = "npm run compile && npx @vscode/vsce package"
[deployment]
run = ["sh", "-c", "npm run compile && npx @vscode/vsce package"]