This is a bit of a misnomer, hence it running on the nightly tests. It uses _only_ the published versions of `@nrwl/*` packages on npmjs registry, due to a limitation with verdaccio, where it only looks at the local registry for `@nrwl/*` packages.
22 lines
403 B
JavaScript
22 lines
403 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import * as yargsParser from 'yargs-parser';
|
|
import {
|
|
Args,
|
|
makeAngularCliFaster,
|
|
} from './utilities/make-angular-cli-faster';
|
|
|
|
const args = yargsParser(process.argv, {
|
|
string: ['version'],
|
|
boolean: ['verbose', 'useNxCloud'],
|
|
});
|
|
|
|
makeAngularCliFaster(args as Args)
|
|
.then(() => {
|
|
process.exit(0);
|
|
})
|
|
.catch((e) => {
|
|
console.log(e);
|
|
process.exit(1);
|
|
});
|