X Tutup
Skip to content

Commit a444aa5

Browse files
committed
Rebuild shouldn't be incremental.
1 parent 51e560c commit a444aa5

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

apps/rush-lib/src/cli/RushCommandLineParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export class RushCommandLineParser extends CommandLineParser {
239239
enableParallelism: true,
240240
ignoreMissingScript: false,
241241
ignoreDependencyOrder: false,
242-
incremental: true,
242+
incremental: false,
243243
allowWarningsInSuccessfulBuild: false
244244
}));
245245
}

apps/rush-lib/src/cli/test/__snapshots__/CommandLineHelp.test.ts.snap

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ Optional arguments:
441441
exports[`CommandLineHelp prints the help for each action: rebuild 1`] = `
442442
"usage: rush rebuild [-h] [-p COUNT] [-t PROJECT1]
443443
[--to-version-policy VERSION_POLICY_NAME] [-f PROJECT2]
444-
[-v] [-o] [-s] [-m]
444+
[-v] [-s] [-m]
445445
446446
447447
This command assumes that the package.json file for each project contains a
@@ -472,10 +472,6 @@ Optional arguments:
472472
indirectly depend on the specified project
473473
-v, --verbose Display the logs during the build, rather than just
474474
displaying the build status summary
475-
-o, --changed-projects-only
476-
If specified, the incremental build will only rebuild
477-
projects that have changed, but not any projects that
478-
directly or indirectly depend on the changed package.
479475
-s, --ship Perform a production build, including minification
480476
and localization steps
481477
-m, --minimal Perform a fast build, which disables certain tasks

0 commit comments

Comments
 (0)
X Tutup