1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-08 23:25:51 +01:00

chore: add debug bootstrap entry point

for debugging and profiling
This commit is contained in:
Juan Picado @jotadeveloper 2018-05-26 22:41:18 +02:00
parent efd57f7aa1
commit 54da8327ab
No known key found for this signature in database
GPG Key ID: 18AC54485952D158
2 changed files with 5 additions and 0 deletions

@ -26,4 +26,5 @@ wiki/
jestEnvironment.js
jest.e2e.config.js
jest.config.js
debug/

4
debug/bootstrap.js vendored Normal file

@ -0,0 +1,4 @@
// this file aims to help local debugging with hot transpilation
// it requires BABEL_ENV=registry set as env variable
require('babel-register')();
require('../src/lib/cli');