You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,12 @@
36
36
"main": "./out/extension.js",
37
37
"contributes": {
38
38
"commands": [
39
+
{
40
+
"command": "vscode-task.init",
41
+
"title": "Initialize Taskfile",
42
+
"category": "Task",
43
+
"icon": "$(plus)"
44
+
},
39
45
{
40
46
"command": "vscode-task.refresh",
41
47
"title": "Refresh Tasks",
@@ -84,6 +90,12 @@
84
90
}
85
91
]
86
92
},
93
+
"viewsWelcome": [
94
+
{
95
+
"view": "vscode-task.tasks",
96
+
"contents": "No Taskfile found in this workspace. Click the button below to get started and initialize a new Taskfile.\n[Initialize Taskfile](command:vscode-task.init)\nTo learn more about how to use Task [read our docs](https://taskfile.dev)."
0 commit comments