From ac8bed9af79e3a42a3408c7a05b52a03605ab944 Mon Sep 17 00:00:00 2001 From: fuyu Date: Wed, 24 Dec 2025 17:34:18 +0800 Subject: [PATCH] fix: place replacePlugin at the end --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 081d97f..56506cc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -33,7 +33,6 @@ const InlineEnum: UnpluginInstance = createUnplugin< const name = 'unplugin-inline-enum' return [ - replacePlugin, { name, enforce: options.enforce, @@ -94,6 +93,7 @@ const InlineEnum: UnpluginInstance = createUnplugin< }, }, }, + replacePlugin, ] })