verdaccio/scripts/run-verdaccio.js

9 lines
230 B
JavaScript
Raw Normal View History

#!/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')({
2020-08-13 23:36:23 +02:00
extensions: ['.ts', '.js'],
});
require('../src/lib/cli');