From 665aa89b4fa7a2fa11f5deadcd05fa0434857da8 Mon Sep 17 00:00:00 2001 From: Siddharth Kshetrapal Date: Wed, 13 Sep 2023 15:53:47 +0200 Subject: [PATCH] add ActionMenu/index.ts to rollup entrypoint --- rollup.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rollup.config.js b/rollup.config.js index da1fa285478..833ec42b37b 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -35,6 +35,9 @@ const input = new Set([ // "./lib-esm/utils/*" 'src/utils/*', + + // for backward compatbility, see + 'src/ActionMenu/index.ts', ], { cwd: __dirname,