Skip to content

Commit

Permalink
Move tasks into workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
MerijnHendriks committed Apr 28, 2024
1 parent 6a0c994 commit 9f1e753
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
21 changes: 0 additions & 21 deletions .vscode/tasks.json

This file was deleted.

21 changes: 21 additions & 0 deletions Fika-Server.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@
"path": "."
}
],
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "npm: install",
"type": "shell",
"command": "npm install",
},
{
"label": "npm: build",
"type": "shell",
"command": "npm run build",
"dependsOrder": "sequence",
"dependsOn": "npm: install",
"group": {
"kind": "build",
"isDefault": true
}
}
]
},
"settings": {
"window.title": "Fika Server"
},
Expand Down

0 comments on commit 9f1e753

Please sign in to comment.