Feature/tasks json readme (#130)

* feat: add tasks.json with task to generate README file (closes #106)

* chore: set tasks.json version to 1.0.0 as requested

* chore(tasks): update tasks.json version to 2.0.0 for VS Code compatibility

---------

Co-authored-by: Aung Myo Kyaw <aungmyokyaw@users.noreply.github.com>
This commit is contained in:
Aung Myo Kyaw 2025-07-28 07:12:51 +07:00 committed by GitHub
parent 4e36f6104a
commit 9f5c134d77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

@ -0,0 +1,16 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "generate-readme",
"type": "shell",
"command": "node update-readme.js",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Generates the README.md file using update-readme.js script."
}
]
}