We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 084dad6 commit bf41a25Copy full SHA for bf41a25
packages/angular/cli/bin/postinstall/script.js
@@ -1,5 +1,8 @@
1
#!/usr/bin/env node
2
'use strict';
3
4
-require('./ng-update-message');
5
-require('./analytics-prompt');
+// These should not fail but if they do they should not block installation of the package
+try {
6
+ require('./ng-update-message');
7
+ require('./analytics-prompt');
8
+} catch (_) {}
0 commit comments