mirror of https://github.com/alibaba/ice.git
11 lines
355 B
JavaScript
11 lines
355 B
JavaScript
|
|
#!/usr/bin/env node
|
||
|
|
const utils = require('create-cli-utils');
|
||
|
|
const getBuiltInPlugins = require('../lib/getBuiltInPlugins').default;
|
||
|
|
const packageInfo = require('../package.json');
|
||
|
|
|
||
|
|
const forkChildProcessPath = require.resolve('./child-process-start');
|
||
|
|
|
||
|
|
(async () => {
|
||
|
|
await utils.createCli(getBuiltInPlugins, forkChildProcessPath, packageInfo);
|
||
|
|
})();
|