Skip to content

Commit

Permalink
fix(tasks): VSCode Taks command were broken in new VSCode insiders
Browse files Browse the repository at this point in the history
- npm/yarn commands needs to be written in 1 line
- referenced to closed VSCode issue microsoft/vscode#46207
  • Loading branch information
ghiscoding committed Mar 21, 2018
1 parent c4f8c5d commit 653ecb8
Showing 1 changed file with 7 additions and 29 deletions.
36 changes: 7 additions & 29 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,66 +3,44 @@
"tasks": [
{
"label": "Build Library",
"command": "yarn",
"command": "yarn run build",
"type": "shell",
"args": [
"run",
"build"
],
"problemMatcher": []
},
{
"label": "Build Github Demo Page",
"command": "yarn",
"command": "yarn build:github-demo",
"type": "shell",
"args": [
"build:github-demo"
],
"problemMatcher": []
},
{
"label": "Start Library Development",
"command": "yarn",
"command": "yarn start:dev",
"type": "shell",
"args": [
"start:dev"
],
"problemMatcher": []
},
{
"label": "Start Client-CLI",
"command": "yarn",
"command": "yarn start:client-cli",
"type": "shell",
"args": [
"start:client-cli"
],
"problemMatcher": []
},
{
"label": "Start Github Demo Page",
"command": "yarn",
"command": "yarn start:github-demo",
"type": "shell",
"args": [
"start:github-demo"
],
"problemMatcher": []
},
{
"label": "Prepare Release as Minor (0.x.0)",
"command": "yarn",
"command": "yarn run release -- --release-as minor --infile ./doc/CHANGELOG.md",
"type": "shell",
"args": [
"run release -- --release-as minor --infile ./doc/CHANGELOG.md"
],
"problemMatcher": []
},
{
"label": "Prepare Release as Patch (0.0.x)",
"command": "yarn",
"command": "yarn run release -- --release-as patch --infile ./doc/CHANGELOG.md",
"type": "shell",
"args": [
"run release -- --release-as patch --infile ./doc/CHANGELOG.md"
],
"problemMatcher": []
}
]
Expand Down

0 comments on commit 653ecb8

Please sign in to comment.