26 lines
643 B
JSON
26 lines
643 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Export Modrinth Modpack",
|
|
"type": "shell",
|
|
"command": "packwiz",
|
|
"args": [
|
|
"modrinth",
|
|
"export"
|
|
],
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Refresh Modpack Index",
|
|
"type": "shell",
|
|
"command": "packwiz",
|
|
"args": [
|
|
"refresh"
|
|
],
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |