refactor(db-sync): rename worker-sync to db-sync

This commit is contained in:
rcmerci
2026-01-10 17:52:33 +08:00
parent cdd380bdc7
commit 0864b485f4
35 changed files with 199 additions and 199 deletions

17
deps/db-sync/package.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "@logseq/db-sync",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "cd ./worker && npx wrangler dev",
"watch": "clojure -M:cljs watch db-sync",
"release": "clojure -M:cljs release db-sync",
"test": "clojure -M:cljs compile db-sync-test",
"clean": "rm -rf ./worker/dist/",
"deploy": "yarn clean && yarn release && cd ./worker && wrangler deploy",
"deploy-staging": "yarn clean && yarn release && cd ./worker && wrangler deploy --env staging"
},
"dependencies": {
"shadow-cljs": "^3.3.4"
}
}