Skip to content

Commit 9f5c134

Browse files
authored
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 <[email protected]>
1 parent 4e36f61 commit 9f5c134

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.vscode/tasks.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "generate-readme",
6+
"type": "shell",
7+
"command": "node update-readme.js",
8+
"problemMatcher": [],
9+
"group": {
10+
"kind": "build",
11+
"isDefault": true
12+
},
13+
"detail": "Generates the README.md file using update-readme.js script."
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)