Skip to content

Instantly share code, notes, and snippets.

@ArcanoxDragon
Created July 5, 2023 15:08
Show Gist options
  • Save ArcanoxDragon/3b8b3f9b2fb2684160d37ce4ff1a22c8 to your computer and use it in GitHub Desktop.
Save ArcanoxDragon/3b8b3f9b2fb2684160d37ce4ff1a22c8 to your computer and use it in GitHub Desktop.
Tasks Extension Repro
{
"name": "tasks-extension-repro",
"version": "1.0.0",
"private": true,
"scripts": {
"lint": "echo \"test\""
}
}
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Yarn Install",
"type": "shell",
"command": "yarn",
"options": {
"cwd": "${workspaceFolder}"
}
},
{
"label": "Lint",
"type": "npm",
"script": "lint"
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment