refactor(@angular-devkit/build-angular): deprecate unused analytics property

TypedSchematicContext `analytics` property has been deprecated without replacement.
This commit is contained in:
Alan Agius 2020-10-12 09:05:38 +02:00 committed by Filipe Silva
parent f90084b638
commit ffed990258

View File

@ -196,6 +196,7 @@ export interface TypedSchematicContext<CollectionMetadataT extends object,
addTask<T>(task: TaskConfigurationGenerator<T>, dependencies?: Array<TaskId>): TaskId; addTask<T>(task: TaskConfigurationGenerator<T>, dependencies?: Array<TaskId>): TaskId;
// This might be undefined if the feature is unsupported. // This might be undefined if the feature is unsupported.
/** @deprecated since version 11 - as it's unused. */
readonly analytics?: analytics.Analytics; readonly analytics?: analytics.Analytics;
} }