Aung Myo Kyaw 9f5c134d77
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>
2025-07-28 10:12:51 +10:00

17 lines
337 B
JSON

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