mono/packages/discourse/.vscode/launch.json

178 lines
6.0 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Import - OA-Users ",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\main.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"args": [
"import-users",
"import",
"--src='${OA_ROOT}/data/latest.json'",
"--debug=true"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"console": "internalConsole",
"outputCapture": "std",
"trace": true
},
{
"type": "node",
"request": "launch",
"name": "Update - OA-Users ",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\main.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"args": [
"import-users",
"update",
"--src='${OA_ROOT}/data/latest.json'",
"--debug=true"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"console": "internalConsole",
"outputCapture": "std"
},
{
"type": "node",
"request": "launch",
"name": "Index - OA-Users ",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\main.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"args": [
"import-users",
"index",
"--src='${OA_ROOT}/data/latest.json'",
"--debug=true"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"console": "internalConsole",
"outputCapture": "std"
},
{
"type": "node",
"request": "launch",
"name": "Import - OA-Howtos",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\main.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"args": [
"import-howtos",
// "--src='${OA_ROOT}/data/latest.json'",
"--track='${OA_ROOT}/oa-data/howtos/latest_track.json'",
"--debug=true"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"outputCapture": "std"
},
{
"type": "node",
"request": "launch",
"name": "test sync:fs",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\main.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"args": [
"sync",
"file",
"--yaml=true",
"--src='./tests/**/*.md'"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "test sync:component",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\main.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"args": [
"sync-component",
"--src='${PRODUCT_ROOT}/products/'"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "test sync:forum-pages",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\main.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"args": [
"sync-component",
"--src='${OSR_ROOT}/osr-forum-pages/pages/kb/**/*.md'",
"--watch",
"--yaml",
"--sync=mine"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "test sync:library",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\main.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"args": [
"sync-component",
"--cache=true",
"--skip=true",
"--src2='${OSR_LIBRARY_MACHINES}/injection/**/config.+(json)'",
"--src2='${OSR_LIBRARY_MACHINES}/extrusion/**/config.+(json)'",
"--src='${OSR_LIBRARY_MACHINES}/sheetpress/**/config.+(json)'",
"--src2='${OSR_LIBRARY_MACHINES}/shredder/**/config.+(json)'",
"--src2='${OSR_LIBRARY_MACHINES}/zoe/config.+(json)'",
// "--src='${OSR_LIBRARY_MACHINES}/combo/IntegrationUnitMonash/config.+(json)'",
"--src1='${OSR_LIBRARY_MACHINES}/injection/**/config.+(json)'",
//"--src='${OSR_LIBRARY_MACHINES}/sheetpress/cassandra-light/config.+(json)'",
"--root='${OSR_LIBRARY_MACHINES}'",
"--sync=mine",
"--logLevel=debug"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"outputCapture": "std"
}
]
}