From 55979a94b663c621aab54cd345770d72df7f4380 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Mon, 6 May 2024 18:07:52 +0200 Subject: [PATCH] Add deprecation for feature-exists --- lib/src/deprecations.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/src/deprecations.ts b/lib/src/deprecations.ts index 1c679573..bdaff204 100644 --- a/lib/src/deprecations.ts +++ b/lib/src/deprecations.ts @@ -164,6 +164,13 @@ export const deprecations: typeof api.deprecations = { obsoleteIn: null, description: 'Function and mixin names beginning with --.', }, + 'feature-exists': { + id: 'feature-exists', + status: 'active', + deprecatedIn: new Version(1, 78, 0), + obsoleteIn: null, + description: 'Using the meta.feature-exists() function.', + }, import: { id: 'import', status: 'future',