actboy168 / vscode-tasks

MIT License
37 stars 14 forks source link

NPM tasks not appearing in status bar anymore #40

Closed JordanLongstaff closed 1 year ago

JordanLongstaff commented 1 year ago

I had these two tasks in my tasks.json file, along with several others. All of them used to show up in the status bar thanks to this extension. However, it got updated yesterday, and now all of a sudden, these two tasks just...don't show up anymore, and there's no log output to give any insight as to why. The rest do; the one thing these two have in common, separating them from all the rest, is that they're NPM tasks. Is there any reason they're suddenly absent? Does the extension just not support NPM tasks anymore?

{
    "type": "npm",
    "script": "tsc",
    "group": {
        "kind": "build",
        "isDefault": true
    },
    "problemMatcher": {
        "base": "$tsc",
        "fileLocation": [
            "relative",
            "${workspaceFolder}/client"
        ]
    },
    "options": {
        "cwd": "client"
    }
},
{
    "type": "npm",
    "script": "tslint",
    "problemMatcher": {
        "base": "$tsc",
        "fileLocation": [
            "relative",
            "${workspaceFolder}/client"
        ]
    },
    "options": {
        "cwd": "client"
    }
},