Initial commit: Vault Party UI (massuus)
This commit is contained in:
13
.vscode/launch.json
vendored
Normal file
13
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "java",
|
||||
"name": "Attach to Forge Client",
|
||||
"request": "attach",
|
||||
"hostName": "localhost",
|
||||
"port": 5005,
|
||||
"preLaunchTask": "runClientDebug"
|
||||
}
|
||||
]
|
||||
}
|
||||
4
.vscode/settings.json
vendored
Normal file
4
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"java.compile.nullAnalysis.mode": "automatic",
|
||||
"java.configuration.updateBuildConfiguration": "automatic"
|
||||
}
|
||||
61
.vscode/tasks.json
vendored
Normal file
61
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "runClient",
|
||||
"type": "shell",
|
||||
"command": "${workspaceFolder}\\gradlew.bat",
|
||||
"args": ["runClient"],
|
||||
"group": "build",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "runClientDebug",
|
||||
"type": "shell",
|
||||
"command": "${workspaceFolder}\\gradlew.bat",
|
||||
"args": ["runClient", "--debug-jvm"],
|
||||
"group": "build",
|
||||
"isBackground": true,
|
||||
"problemMatcher": {
|
||||
"owner": "gradle-debug",
|
||||
"pattern": {
|
||||
"regexp": "^$"
|
||||
},
|
||||
"background": {
|
||||
"activeOnStart": true,
|
||||
"beginsPattern": ".*",
|
||||
"endsPattern": "Listening for transport dt_socket at address: 5005"
|
||||
}
|
||||
}
|
||||
}
|
||||
,
|
||||
{
|
||||
"label": "build",
|
||||
"type": "shell",
|
||||
"command": "${workspaceFolder}\\gradlew.bat",
|
||||
"args": ["build"],
|
||||
"group": "build",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "deployToCurseForge",
|
||||
"type": "shell",
|
||||
"command": "${workspaceFolder}\\scripts\\deploy.ps1",
|
||||
"args": [],
|
||||
"options": {
|
||||
"shell": {
|
||||
"executable": "powershell",
|
||||
"args": ["-NoProfile", "-ExecutionPolicy", "Bypass", "-File"]
|
||||
}
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "build-and-deploy",
|
||||
"type": "shell",
|
||||
"dependsOn": ["build", "deployToCurseForge"],
|
||||
"group": "build",
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user