Skip to content

Commit

Permalink
Update vscode tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
vocksel committed Apr 16, 2024
1 parent 790623c commit b656b6d
Showing 1 changed file with 18 additions and 19 deletions.
37 changes: 18 additions & 19 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,20 @@
"label": "Install packages",
"type": "shell",
"problemMatcher": [],
"command": "./bin/wally-install.sh"
"command": "just",
"args": [
"wally-install"
]
},
{
"label": "Build (Development)",
"type": "shell",
"problemMatcher": [],
"windows": {
"command": "rojo build dev.project.json -o $LOCALAPPDATA/Roblox/Plugins/flipbook.rbxm"
},
"osx": {
"command": "rojo build dev.project.json -o ~/Documents/Roblox/Plugins/flipbook.rbxm"
},
"command": "just",
"args": [
"build",
"dev"
],
"group": {
"kind": "build",
"isDefault": true
Expand All @@ -28,12 +30,11 @@
"label": "Build (Production)",
"type": "shell",
"problemMatcher": [],
"windows": {
"command": "rojo build -o $LOCALAPPDATA/Roblox/Plugins/flipbook.rbxm"
},
"osx": {
"command": "rojo build -o ~/Documents/Roblox/Plugins/flipbook.rbxm"
},
"command": "just",
"args": [
"build",
"prod"
],
"group": {
"kind": "build",
}
Expand All @@ -42,12 +43,10 @@
"label": "Build and watch",
"type": "shell",
"problemMatcher": [],
"windows": {
"command": "rojo build dev.project.json -o $LOCALAPPDATA/Roblox/Plugins/flipbook.rbxm --watch"
},
"osx": {
"command": "rojo build dev.project.json -o ~/Documents/Roblox/Plugins/flipbook.rbxm --watch",
}
"command": "just",
"args": [
"build-watch",
]
},
{
"label": "Serve docs",
Expand Down

0 comments on commit b656b6d

Please sign in to comment.