From a775f2ad5054480d5381f4136ee0c3159cc11ab4 Mon Sep 17 00:00:00 2001 From: Christoph Wurst <1374172+ChristophWurst@users.noreply.github.com> Date: Wed, 20 May 2026 18:42:54 +0200 Subject: [PATCH] fix(package): exclude dev config and patch files from release tarball eslint.config.mjs (flat config), stylelint.config.js, playwright.config.js, tsconfig.json, .patches/, patches.json, and patches.lock.json were all missing from .nextcloudignore and ended up in the v5.8.0 release tarball. Assisted-by: Claude:claude-sonnet-4-6 Signed-off-by: Christoph Wurst <1374172+ChristophWurst@users.noreply.github.com> --- .nextcloudignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.nextcloudignore b/.nextcloudignore index 0c05728aeb..ce3eb4c697 100644 --- a/.nextcloudignore +++ b/.nextcloudignore @@ -10,6 +10,7 @@ codecov.yml /coverage /.editorconfig /.eslintrc.js +/eslint.config.mjs .git .git-blame-ignore-revs .gitattributes @@ -44,3 +45,9 @@ codecov.yml /webpack.* /vitest.config.* /patches +/.patches +/patches.json +/patches.lock.json +/playwright.config.js +/stylelint.config.js +/tsconfig.json