From 38d54195b0042a94119bbe74f2718fbd9f84f240 Mon Sep 17 00:00:00 2001 From: Saifullah-dev Date: Fri, 15 Nov 2024 00:52:46 +0500 Subject: [PATCH] fix(JSR Release): Add negative glob for `dist` to unexclude from gitignore `jsr.json` for `jsr publish` --- frontend/jsr.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/jsr.json b/frontend/jsr.json index cdf1221..d7348d9 100644 --- a/frontend/jsr.json +++ b/frontend/jsr.json @@ -6,7 +6,7 @@ }, "publish": { "include": ["dist/**", "README.md", "LICENSE"], - "exclude": ["tests/**", "src/**/*.jsx"] + "exclude": ["tests/**", "src/**/*.jsx", "!dist/**"] }, "description": "React File Manager is an open-source, user-friendly component designed to easily manage files and folders within applications. With smooth drag-and-drop functionality, responsive design, and efficient navigation, it simplifies file handling in any React project." }