Add option to install a generated distro to the local Helios data folder
* Run g distro with --installLocal to have the generated file be copied into the local helios data folder. * New property required in the .env, HELIOS_DATA_FOLDER * Added two launch configurations to vs code.
This commit is contained in:
22
.vscode/launch.json
vendored
22
.vscode/launch.json
vendored
@@ -7,14 +7,26 @@
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Launch Program",
|
||||
"name": "Generate Distribution",
|
||||
"program": "${workspaceFolder}\\src\\index.ts",
|
||||
"args": [
|
||||
"g",
|
||||
"distro",
|
||||
"xyz"
|
||||
"g", "distro"
|
||||
],
|
||||
"preLaunchTask": "compile",
|
||||
"preLaunchTask": "build",
|
||||
"outFiles": [
|
||||
"${workspaceFolder}/dist/**/*.js"
|
||||
],
|
||||
"outputCapture": "std",
|
||||
},
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Install Dev Distribution",
|
||||
"program": "${workspaceFolder}\\src\\index.ts",
|
||||
"args": [
|
||||
"g", "distro", "dev_distribution", "--installLocal"
|
||||
],
|
||||
"preLaunchTask": "build",
|
||||
"outFiles": [
|
||||
"${workspaceFolder}/dist/**/*.js"
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user