mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-22 23:15:56 +08:00
9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
#!/usr/bin/env node
|
|
'use strict';
|
|
|
|
// These should not fail but if they do they should not block installation of the package
|
|
try {
|
|
require('./ng-update-message');
|
|
require('./analytics-prompt');
|
|
} catch (_) {}
|