Setup build procedure
Some checks failed
Validate Build / validate-build (push) Failing after 34s
Gitea Release Actions / upload-release-assets (release) Failing after 32s

This commit is contained in:
Cooper Dalrymple
2025-10-29 13:11:02 -05:00
parent 8938a25d2a
commit b72a0584ba
7 changed files with 287 additions and 39 deletions

25
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Package",
"type": "shell",
"command": "gulp",
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared",
}
},
{
"label": "Install",
"type": "shell",
"command": "make install",
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared",
}
}
]
}