@absolutejs/sync 1.20.0 → 1.21.0
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/dist/engine/devtools.d.ts +8 -0
- package/dist/engine/index.d.ts +1 -1
- package/dist/engine/index.js +299 -152
- package/dist/engine/index.js.map +5 -4
- package/dist/engine/syncEngine.d.ts +58 -0
- package/dist/index.js +298 -152
- package/dist/index.js.map +5 -4
- package/dist/testing.js +298 -152
- package/dist/testing.js.map +5 -4
- package/package.json +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@absolutejs/sync",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0",
|
|
4
4
|
"description": "Lightweight reactive-push and write-behind-cache primitives for Elysia and the AbsoluteJS ecosystem — kill polling and keep a remote store off your hot path, without adopting a whole sync-engine backend.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -183,9 +183,13 @@
|
|
|
183
183
|
"optional": true
|
|
184
184
|
}
|
|
185
185
|
},
|
|
186
|
+
"dependencies": {
|
|
187
|
+
"@absolutejs/telemetry": "^0.0.2"
|
|
188
|
+
},
|
|
186
189
|
"devDependencies": {
|
|
187
190
|
"@absolutejs/absolute": "^0.19.0-beta.1051",
|
|
188
191
|
"@absolutejs/isolated-jsc": "0.8.0",
|
|
192
|
+
"@absolutejs/telemetry": "^0.0.2",
|
|
189
193
|
"@angular/core": "^21.0.0",
|
|
190
194
|
"@elysiajs/cron": "^1.4.2",
|
|
191
195
|
"@elysiajs/eden": "^1.4.9",
|