mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
93468211d6
* chore: update eslint * chore: update rules and style * chore: aling formatting * chore: update ci rules * chore: aling formatting * chore: aling formatting
22 lines
661 B
TypeScript
22 lines
661 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) => {
|
|
if ('verdaccio_started' in msg) {
|
|
resolve(childFork);
|
|
}
|
|
});
|
|
|
|
childFork.on('error', (err) => reject([err]));
|
|
childFork.on('disconnect', (err) => reject([err]));
|
|
childFork.on('exit', (err) => reject([err]));
|
|
});
|
|
}
|