From 46b5ae16a4a0740258c9184ff9b9852737305990 Mon Sep 17 00:00:00 2001 From: sravan Date: Mon, 20 Jul 2026 17:07:01 +0530 Subject: [PATCH] speaker: force-add audio-route plugin dist stubs (global dist/ ignore would drop them from a fresh clone) --- mobile/plugins/audio-route/dist/esm/index.d.ts | 1 + mobile/plugins/audio-route/dist/esm/index.js | 3 +++ mobile/plugins/audio-route/dist/plugin.cjs.js | 2 ++ 3 files changed, 6 insertions(+) create mode 100644 mobile/plugins/audio-route/dist/esm/index.d.ts create mode 100644 mobile/plugins/audio-route/dist/esm/index.js create mode 100644 mobile/plugins/audio-route/dist/plugin.cjs.js diff --git a/mobile/plugins/audio-route/dist/esm/index.d.ts b/mobile/plugins/audio-route/dist/esm/index.d.ts new file mode 100644 index 0000000..cb0ff5c --- /dev/null +++ b/mobile/plugins/audio-route/dist/esm/index.d.ts @@ -0,0 +1 @@ +export {}; diff --git a/mobile/plugins/audio-route/dist/esm/index.js b/mobile/plugins/audio-route/dist/esm/index.js new file mode 100644 index 0000000..e7d3281 --- /dev/null +++ b/mobile/plugins/audio-route/dist/esm/index.js @@ -0,0 +1,3 @@ +// Native-only plugin — the web app calls window.Capacitor.Plugins.AudioRoute directly (it loads the UI from +// a remote URL, so nothing here is bundled). This stub only exists so the npm package resolves. +export {}; diff --git a/mobile/plugins/audio-route/dist/plugin.cjs.js b/mobile/plugins/audio-route/dist/plugin.cjs.js new file mode 100644 index 0000000..c527e4e --- /dev/null +++ b/mobile/plugins/audio-route/dist/plugin.cjs.js @@ -0,0 +1,2 @@ +'use strict'; +// Native-only plugin stub (see dist/esm/index.js).