@bobfrankston/rmfmail 1.1.6 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/build-bundles.mjs +12 -0
- package/client/android-bootstrap.bundle.js +19 -1
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +7 -5
- package/client/app.bundle.js.map +2 -2
- package/client/components/message-list.js +18 -13
- package/client/components/message-list.js.map +1 -1
- package/client/components/message-list.ts +18 -13
- package/client/lib/tinymce/themes/silver/index.js +7 -0
- package/client/lib/tinymce/themes/silver/theme.js +34829 -0
- package/client/lib/tinymce/themes/silver/theme.min.js +1 -0
- package/client/lib/tinymce/tinymce.js +41682 -0
- package/client/lib/tinymce/tinymce.min.js +10 -0
- package/package.json +1 -1
- package/packages/mailx-store/store.d.ts +4 -0
- package/packages/mailx-store/store.d.ts.map +1 -1
- package/packages/mailx-store/store.js +36 -13
- package/packages/mailx-store/store.js.map +1 -1
- package/packages/mailx-store/store.ts +44 -14
- package/packages/mailx-store-web/db.d.ts.map +1 -1
- package/packages/mailx-store-web/db.js +24 -9
- package/packages/mailx-store-web/db.js.map +1 -1
- package/packages/mailx-store-web/db.ts +25 -10
- package/packages/mailx-store-web/package.json +1 -1
- package/packages/mailx-store-web/wasm.d.ts +7 -0
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-41384 → node_modules.npmglobalize-stash-38392}/.package-lock.json +0 -0
package/bin/build-bundles.mjs
CHANGED
|
@@ -105,6 +105,18 @@ const shared = {
|
|
|
105
105
|
splitting: false,
|
|
106
106
|
minify: false,
|
|
107
107
|
logLevel: "info",
|
|
108
|
+
// .wasm files are inlined as base64 data URLs so the runtime can
|
|
109
|
+
// decode → Uint8Array → pass as initSqlJs({ wasmBinary }), bypassing
|
|
110
|
+
// sql.js's fetch(...) of the .wasm. Android WebView refuses to
|
|
111
|
+
// compile WASM fetched from file:// (even with AllowFileAccess /
|
|
112
|
+
// AllowUniversalAccess set — the WebAssembly compiler requires
|
|
113
|
+
// content-type:application/wasm which file:// doesn't supply, AND
|
|
114
|
+
// ArrayBuffer-fallback fetch also fails). Bob 2026-05-14 v1.1.6.1
|
|
115
|
+
// logit: "wasm streaming compile failed → fallback ArrayBuffer
|
|
116
|
+
// instantiation → both async and sync fetching of the wasm failed".
|
|
117
|
+
// Embedding makes the bundle larger (~700 KB → ~933 KB base64) but
|
|
118
|
+
// eliminates the runtime fetch and works on every platform.
|
|
119
|
+
loader: { ".wasm": "binary" },
|
|
108
120
|
};
|
|
109
121
|
|
|
110
122
|
async function buildAll() {
|