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 Aung Myo Kyaw
parent ef813f7572
commit 982b35ed09
No known key found for this signature in database
GPG Key ID: CF9C1464F7063FDD

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."
}
]
}