You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(compiler-cli): ngcc - remove outdated link (angular#40285)
The link to the "speeding-up-ngcc-compilation" URL does not exist,
it was removed shortly after it was added, but the link in the ngcc
error message was not updated.
Fixesangular#39837
PR Closeangular#40285
Copy file name to clipboardExpand all lines: packages/compiler-cli/ngcc/src/locking/sync_locker.ts
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -54,8 +54,7 @@ export class SyncLocker {
54
54
constpid=this.lockFile.read();
55
55
thrownewError(
56
56
`ngcc is already running at process with id ${pid}.\n`+
57
-
`If you are running multiple builds in parallel then you should pre-process your node_modules via the command line ngcc tool before starting the builds;\n`+
`If you are running multiple builds in parallel then you might try pre-processing your node_modules via the command line ngcc tool before starting the builds.\n`+
59
58
`(If you are sure no ngcc process is running then you should delete the lock-file at ${
Copy file name to clipboardExpand all lines: packages/compiler-cli/ngcc/test/locking/sync_locker_spec.ts
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -58,8 +58,7 @@ runInEachFileSystem(() => {
58
58
expect(()=>locker.lock(()=>{}))
59
59
.toThrowError(
60
60
`ngcc is already running at process with id 188.\n`+
61
-
`If you are running multiple builds in parallel then you should pre-process your node_modules via the command line ngcc tool before starting the builds;\n`+
`If you are running multiple builds in parallel then you might try pre-processing your node_modules via the command line ngcc tool before starting the builds.\n`+
63
62
`(If you are sure no ngcc process is running then you should delete the lock-file at ${
0 commit comments