mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 03:23:57 +08:00
20 lines
404 B
JavaScript
20 lines
404 B
JavaScript
'use strict';
|
|
// This file is ES6 because it needs to be executed as is.
|
|
|
|
if ('NG_CLI_ANALYTICS' in process.env) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
var analytics = require('../../models/analytics');
|
|
|
|
analytics
|
|
.hasGlobalAnalyticsConfiguration()
|
|
.then((hasGlobalConfig) => {
|
|
if (!hasGlobalConfig) {
|
|
return analytics.promptGlobalAnalytics();
|
|
}
|
|
})
|
|
.catch(() => {});
|
|
} catch (_) {}
|