File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ const packages = require('../../../lib/packages');
88export default function ( ) {
99 const argv = getGlobalVariable ( 'argv' ) ;
1010
11+ if ( argv . nobuild ) {
12+ return ;
13+ }
14+
1115 return npm ( 'run' , 'build' )
1216 . then ( ( ) => console . log ( 'Updating package.json from dist...' ) )
1317 . then ( ( ) => Promise . all ( Object . keys ( packages ) . map ( pkgName => {
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ Error.stackTraceLimit = Infinity;
2525 * Here's a short description of those flags:
2626 * --debug If a test fails, block the thread so the temporary directory isn't deleted.
2727 * --noproject Skip creating a project or using one.
28+ * --nobuild Skip building the packages. Use with --nolink and --reuse to quickly
29+ * rerun tests.
2830 * --nolink Skip linking your local @angular/cli directory. Can save a few seconds.
2931 * --ng-sha=SHA Use a specific ng-sha. Similar to nightly but point to a master SHA instead
3032 * of using the latest.
You can’t perform that action at this time.
0 commit comments