mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
9 lines
229 B
JavaScript
9 lines
229 B
JavaScript
|
#!/usr/bin/env node
|
||
|
|
||
|
// 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');
|