Merge branch 'master' into refactor/plugin-api-properties

This commit is contained in:
Tienson Qin
2025-10-09 12:28:54 +08:00
21 changed files with 556 additions and 254 deletions

View File

@@ -86,8 +86,8 @@
(when-not @*sqlite
(p/let [href (.. js/location -href)
publishing? (string/includes? href "publishing=true")
sqlite (sqlite3InitModule (clj->js {:print js/console.log
:printErr js/console.error}))]
sqlite (sqlite3InitModule (clj->js {:print #(log/info :init-sqlite-module! %)
:printErr #(log/error :init-sqlite-module! %)}))]
(reset! *publishing? publishing?)
(reset! *sqlite sqlite)
nil)))