From 8eb90fc53335eb0405bf066ec9af87a7bb6b343f Mon Sep 17 00:00:00 2001 From: AlexisG Date: Tue, 15 Oct 2024 16:38:26 +0200 Subject: [PATCH] chore: Add bundlemon config Adding a minimum configuration. The package is already present but the config was missing. --- .bundlemonrc | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .bundlemonrc diff --git a/.bundlemonrc b/.bundlemonrc new file mode 100644 index 00000000..0e26e867 --- /dev/null +++ b/.bundlemonrc @@ -0,0 +1,44 @@ +{ + "baseDir": "./build", + "files": [ + { + "path": "app/photos..js" + }, + { + "path": "public/cozy-client-js.js" + }, + { + "path": "public/photos..js" + }, + { + "path": "public/photos..min.css" + }, + { + "path": "services/onPhotoTrashed/photos.js" + }, + { + "path": "services/onPhotoUpload/photos.js" + }, + { + "path": "vendors/photos..js" + }, + { + "path": "app-photos..min.css" + }, + { + "path": "index.html" + }, + { + "path": "manifest.json" + }, + { + "path": "manifest.webapp" + }, + { + "path": "vendors-photos..min.css" + } + ], + "reportOutput": [ + "github" + ] +}