Initial commit of 0.2.0

This commit is contained in:
Cooper Dalrymple
2025-07-22 15:53:23 -05:00
parent 58a5fbbcb2
commit 70a9adac4c
13 changed files with 775 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",
}
}
]
}