From 9941cfeb25efdbbce18f3401a21a2c54a3499be7 Mon Sep 17 00:00:00 2001 From: Saifullah-dev Date: Fri, 15 Nov 2024 00:31:11 +0500 Subject: [PATCH] fix(JSR Release): Exclude `jsx` files in `jsr publish` --- frontend/jsr.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/jsr.json b/frontend/jsr.json index 7a53aa5..cdf1221 100644 --- a/frontend/jsr.json +++ b/frontend/jsr.json @@ -1,8 +1,12 @@ { "name": "@cubone/react-file-manager", - "version": "1.10.5", + "version": "1.10.6", "exports": { ".": "./dist/react-file-manager.es.js" }, + "publish": { + "include": ["dist/**", "README.md", "LICENSE"], + "exclude": ["tests/**", "src/**/*.jsx"] + }, "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." }