Skip to content

Commit

Permalink
feat(dev): add vscode tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabb-c committed Jul 10, 2021
1 parent c0a016c commit 91d2cc8
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build:ci",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"label": "npm: build:ci",
"detail": "yarn build && yarn types"
},
{
"type": "npm",
"script": "test:dev",
"problemMatcher": [],
"label": "npm: test:dev",
"detail": "jest --verbose --colors --expand --maxWorkers=50% --detectOpenHandles --errorOnDeprecated --bail",
"group": {
"kind": "test",
"isDefault": true
}
},
{
"type": "npm",
"script": "lint:ci",
"problemMatcher": [],
"label": "npm: lint:ci",
"detail": "yarn lint:fix && yarn format && yarn sort"
},
{
"type": "npm",
"script": "reinstall",
"problemMatcher": [],
"label": "npm: reinstall",
"detail": "rimraf node_modules yarn.lock && yarn install --check-files --silent"
}
]
}

0 comments on commit 91d2cc8

Please sign in to comment.