* 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>
17 lines
337 B
JSON
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."
|
|
}
|
|
]
|
|
}
|