2022-10-09 16:15:37 +00:00
|
|
|
import { Npmci } from './npmci.classes.npmci.js';
|
|
|
|
import { Dockerfile } from './manager.docker/mod.classes.dockerfile.js';
|
2019-08-29 18:26:23 +00:00
|
|
|
|
|
|
|
export const npmciInstance = new Npmci();
|
|
|
|
|
|
|
|
export { Dockerfile, Npmci };
|
|
|
|
|
2021-05-14 18:11:12 +00:00
|
|
|
export const runCli = async () => {
|
2019-08-29 18:26:23 +00:00
|
|
|
npmciInstance.start();
|
2021-05-14 18:11:12 +00:00
|
|
|
};
|