From 06fea50ce395a53b33a7f00a8fa8e9fa7c299433 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Sat, 19 Aug 2023 15:03:11 +0200 Subject: [PATCH] fix: `exports` field of package used deprecated syntax Fixes eslint issues of libraries using the package like: > "@nextcloud/vue/dist/Components/NcButton.js" is not found n/no-missing-import Signed-off-by: Ferdinand Thiessen --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7c93599925..e1cac2bb1a 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "import": "./dist/index.mjs", "require": "./dist/index.cjs" }, - "./dist/": "./dist/" + "./dist/*": "./dist/*" }, "files": [ "CHANGELOG.md",