From 20dd16f2c40174ae949b34ec97e7f9593f074666 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Mon, 8 Apr 2024 20:06:13 -0700 Subject: [PATCH] Add a deprecation for importer-without-url Closes #282 --- lib/src/deprecations.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/src/deprecations.ts b/lib/src/deprecations.ts index 7fe782d..4e08a5f 100644 --- a/lib/src/deprecations.ts +++ b/lib/src/deprecations.ts @@ -157,6 +157,14 @@ export const deprecations: typeof api.deprecations = { description: 'Using the current working directory as an implicit load path.', }, + 'importer-without-url': { + id: 'importer-without-url', + status: 'active', + deprecatedIn: new Version(1, 75, 0), + obsoleteIn: null, + description: + 'Passing a base importer without a base URL to compileString*.', + }, import: { id: 'import', status: 'future',