Roblox-File-Format/Plugins/.vscode/tasks.json

28 lines
605 B
JSON
Raw Normal View History

2019-12-23 03:23:06 +00:00
{
"version": "2.0.0",
"tasks":
[
{
"type": "shell",
"label": "Build Plugin",
"command": "rojo build --output GenerateApiDump.rbxm",
2020-06-30 00:06:14 +00:00
"group": "build"
},
{
"type": "shell",
"label": "Build and Test Plugin",
"command": "powershell -ExecutionPolicy ByPass -File DeployToStudio.ps1",
"dependsOn": ["Build Plugin"],
2019-12-23 03:23:06 +00:00
"group":
{
"kind": "build",
"isDefault": true
}
}
]
}