From 60c1bbf23d16b63a155f637955be99d120d088fc Mon Sep 17 00:00:00 2001 From: NKDuy Date: Fri, 1 Dec 2023 08:02:22 +0700 Subject: [PATCH] fix(rollup-config): deprecate BundlingConfig#namedExports --- src/declarations/rindo-public-compiler.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/declarations/rindo-public-compiler.ts b/src/declarations/rindo-public-compiler.ts index d542a2be..9fe5f5c5 100644 --- a/src/declarations/rindo-public-compiler.ts +++ b/src/declarations/rindo-public-compiler.ts @@ -1526,7 +1526,12 @@ export interface CopyTask { keepDirStructure?: boolean; } +// TODO: Remove this interface [BREAKING_CHANGE] export interface BundlingConfig { + /** + * @deprecated the `namedExports` field is no longer honored by `@rollup/plugin-commonjs` and is not used by Rindo. + * This field can be safely removed from your Rindo configuration file. + */ namedExports?: { [key: string]: string[]; };