Skip to content

Commit

Permalink
Add vscode tasks (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipZajdel authored Nov 8, 2024
1 parent e8894e6 commit 6eae0e0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"path": "site",
"group": "build",
"label": "Build webpage",
"detail": "next build"
},
{
"type": "npm",
"script": "dev",
"group": "build",
"path": "site",
"label": "Run webpage on localhost"
},
{
"type": "npm",
"script": "validate-index",
"group": "build",
"label": "Validate index.json"
},
{
"type": "npm",
"script": "generate-index-json",
"group": "build",
"label": "Generate index.json"
}
]
}

0 comments on commit 6eae0e0

Please sign in to comment.