fabiospampinato / vscode-terminals

An extension for setting-up multiple terminals at once, or just running some commands.
MIT License
121 stars 20 forks source link

Run all terminals not working with latest VSCode #35

Closed squishydough closed 4 years ago

squishydough commented 4 years ago

Good afternoon!

First of all, huge fan of your extension! I recently grabbed the latest VSCode update, and since doing that, the command to run all terminals no longer works. An error pops up in VSCode stating "'isExtensible' on proxy: trap result does not reflect extensibility of proxy target (which is 'true')".

My terminals.json file is pretty straight-forward, I believe:

{
  "autorun": false,
  "terminals": [
    {
      "name": "API",
      "commands": ["cd ./api", "npm run dev"]
    },
    {
      "name": "Client",
      "commands": ["cd ./client", "npm run dev"]
    },
    {
      "name": "Sync Common",
      "command": "npm run sync"
    },
    {
      "name": "API Tests",
      "command": "cd ./api"
    }
  ]
}
squishydough commented 4 years ago

Sorry - saw this issue was already posted after the fact.