mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-21 07:29:37 +01:00
7 lines
209 B
JavaScript
7 lines
209 B
JavaScript
// this file aims to help local debugging with hot transpilation
|
|
// it requires BABEL_ENV=registry set as env variable
|
|
require('@babel/register')({
|
|
extensions: ['.ts', '.js'],
|
|
});
|
|
require('../src/lib/cli');
|