feat(template): add name to the template definition
build / Go-Build (push) Successful in 3m1s
build / Go-Build (pull_request) Successful in 1m27s

This commit is contained in:
2026-05-26 14:47:03 +02:00
parent 20cb740eb6
commit 633859cabe
8 changed files with 102 additions and 12 deletions
+16
View File
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/svg-templater",
"args": ["-data", "${workspaceFolder}/data"]
}
]
}