Initial commit

This commit is contained in:
Cooper Dalrymple
2025-11-18 16:56:26 -06:00
parent 563fd88ec0
commit 4b2e3194be
15 changed files with 6683 additions and 3 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 package",
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared",
}
},
{
"label": "Install",
"type": "shell",
"command": "make install",
"group": "build",
"presentation": {
"reveal": "silent",
"panel": "shared",
}
}
]
}