From e495c432dbc8726dfae1835d3dbf126230a9434d Mon Sep 17 00:00:00 2001 From: Evan Lovely Date: Tue, 28 Nov 2023 13:08:54 -0800 Subject: [PATCH] Fix typo in error message --- packages/alias/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/alias/src/index.ts b/packages/alias/src/index.ts index 51503848c..5e34fa743 100755 --- a/packages/alias/src/index.ts +++ b/packages/alias/src/index.ts @@ -104,7 +104,7 @@ export default function alias(options: RollupAliasOptions = {}): Plugin { if (!path.isAbsolute(updatedId)) { this.warn( - `rewrote ${importee} to ${updatedId} but was not an abolute path and was not handled by other plugins. ` + + `rewrote ${importee} to ${updatedId} but was not an absolute path and was not handled by other plugins. ` + `This will lead to duplicated modules for the same path. ` + `To avoid duplicating modules, you should resolve to an absolute path.` );