mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
be2f6129bb
* feat: clipanion as cli * chore: add version command * chore: update ts
22 lines
686 B
TypeScript
22 lines
686 B
TypeScript
import { fork } from 'child_process';
|
|
|
|
export function prepareEnvironment(rootFolder: string, folderName: string) {}
|
|
|
|
export function spawnRegistry(verdaccioPath: string, args: string[], childOptions) {
|
|
return new Promise((resolve, reject) => {
|
|
let _childOptions = { silent: true, ...childOptions };
|
|
|
|
const childFork = fork(verdaccioPath, args, _childOptions);
|
|
|
|
childFork.on('message', (msg: {verdaccio_started: boolean}) => {
|
|
if (msg.verdaccio_started) {
|
|
resolve(childFork);
|
|
}
|
|
});
|
|
|
|
childFork.on('error', (err) => reject([err]));
|
|
childFork.on('disconnect', (err) => reject([err]));
|
|
childFork.on('exit', (err) => reject([err]));
|
|
});
|
|
}
|