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
+14-3Lines changed: 14 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -102,6 +102,12 @@
102
102
"title": "Open Usage",
103
103
"category": "Task",
104
104
"icon": "$(globe)"
105
+
},
106
+
{
107
+
"command": "vscode-task.showDebugPanel",
108
+
"title": "Show Debug Panel",
109
+
"category": "Task",
110
+
"icon": "$(debug)"
105
111
}
106
112
],
107
113
"viewsContainers": {
@@ -124,18 +130,23 @@
124
130
"viewsWelcome": [
125
131
{
126
132
"view": "vscode-task.tasks",
127
-
"contents": "Task not installed. Click the button below to install it.\n[Install Task](command:vscode-task.openInstallation)\nTo learn more about how to use Task [read our docs](https://taskfile.dev).",
133
+
"contents": "Task not installed. Click the button below to install it.\n[Install Task](command:vscode-task.openInstallation)\nTo learn more about how to use Task, [read our docs](https://taskfile.dev).",
128
134
"when": "vscode-task:status == 'notInstalled'"
129
135
},
130
136
{
131
137
"view": "vscode-task.tasks",
132
-
"contents": "Task is out of date. Click the button below to update it.\n[Update Task](command:vscode-task.openInstallation)\nTo learn more about how to use Task [read our docs](https://taskfile.dev).",
138
+
"contents": "Task is out of date. Click the button below to update it.\n[Update Task](command:vscode-task.openInstallation)\nTo learn more about how to use Task, [read our docs](https://taskfile.dev).",
133
139
"when": "vscode-task:status == 'outOfDate'"
134
140
},
135
141
{
136
142
"view": "vscode-task.tasks",
137
-
"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).",
143
+
"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).",
138
144
"when": "vscode-task:status == 'noTaskfile'"
145
+
},
146
+
{
147
+
"view": "vscode-task.tasks",
148
+
"contents": "An error occurred while reading the Taskfile. [Check the output panel](command:vscode-task.showDebugPanel) for more information\nTo learn more about how to use Task, [read our docs](https://taskfile.dev).",
0 commit comments