1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-24 21:15:51 +01:00

fix: debugging with all ports

This commit is contained in:
Juan Picado @jotadeveloper 2019-02-13 14:14:23 +01:00 committed by GitHub
parent 12d153344b
commit c7789f1ce6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
.vscode/launch.json vendored

@ -10,6 +10,7 @@
"name": "CLI Babel Registry", "name": "CLI Babel Registry",
"stopOnEntry": false, "stopOnEntry": false,
"program": "${workspaceFolder}/debug/bootstrap.js", "program": "${workspaceFolder}/debug/bootstrap.js",
"args": ["-l", "0.0.0.0:4873"],
"env": { "env": {
"BABEL_ENV": "registry" "BABEL_ENV": "registry"
}, },
@ -71,7 +72,8 @@
"name": "Verdaccio Compiled", "name": "Verdaccio Compiled",
"preLaunchTask": "npm: code:build", "preLaunchTask": "npm: code:build",
"program": "${workspaceRoot}/bin/verdaccio", "program": "${workspaceRoot}/bin/verdaccio",
"args": ["-l", "0.0.0.0:4873"],
"console": "integratedTerminal" "console": "integratedTerminal"
} }
] ]
} }