@warp-drive-mirror/experiments 0.1.0-alpha.156 → 0.1.0-alpha.157
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/data-worker.js +1 -1
- package/dist/document-storage.js +1 -1
- package/package.json +21 -13
package/dist/data-worker.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as DocumentStorage } from "./index-CGCX7hY2";
|
|
1
|
+
import { D as DocumentStorage } from "./index-CGCX7hY2.js";
|
|
2
2
|
import { SkipCache } from '@warp-drive-mirror/core-types/request';
|
|
3
3
|
import { macroCondition, getGlobalConfig } from '@embroider/macros';
|
|
4
4
|
const WorkerScope = globalThis.SharedWorkerGlobalScope;
|
package/dist/document-storage.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { D as DocumentStorage } from "./index-CGCX7hY2";
|
|
1
|
+
export { D as DocumentStorage } from "./index-CGCX7hY2.js";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive-mirror/experiments",
|
|
3
3
|
"description": "Experimental features for EmberData/WarpDrive",
|
|
4
|
-
"version": "0.1.0-alpha.
|
|
4
|
+
"version": "0.1.0-alpha.157",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Chris Thoburn <runspired@users.noreply.github.com>",
|
|
7
7
|
"repository": {
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
],
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"@sqlite.org/sqlite-wasm": "3.46.0-build2",
|
|
43
|
-
"@ember-data-mirror/request": "5.4.0-alpha.
|
|
44
|
-
"@ember-data-mirror/request-utils": "5.4.0-alpha.
|
|
45
|
-
"@ember-data-mirror/store": "5.4.0-alpha.
|
|
46
|
-
"@warp-drive-mirror/core-types": "5.4.0-alpha.
|
|
43
|
+
"@ember-data-mirror/request": "5.4.0-alpha.157",
|
|
44
|
+
"@ember-data-mirror/request-utils": "5.4.0-alpha.157",
|
|
45
|
+
"@ember-data-mirror/store": "5.4.0-alpha.157",
|
|
46
|
+
"@warp-drive-mirror/core-types": "5.4.0-alpha.157"
|
|
47
47
|
},
|
|
48
48
|
"peerDependenciesMeta": {
|
|
49
49
|
"@sqlite.org/sqlite-wasm": {
|
|
@@ -52,23 +52,23 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@embroider/macros": "^1.16.12",
|
|
55
|
-
"@warp-drive-mirror/build-config": "5.4.0-alpha.
|
|
55
|
+
"@warp-drive-mirror/build-config": "5.4.0-alpha.157"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@babel/core": "^7.26.10",
|
|
59
59
|
"@babel/plugin-transform-typescript": "^7.27.0",
|
|
60
60
|
"@babel/preset-env": "^7.26.9",
|
|
61
61
|
"@babel/preset-typescript": "^7.27.0",
|
|
62
|
-
"@ember-data-mirror/request": "5.4.0-alpha.
|
|
63
|
-
"@ember-data-mirror/request-utils": "5.4.0-alpha.
|
|
64
|
-
"@ember-data-mirror/store": "5.4.0-alpha.
|
|
65
|
-
"@ember-data-mirror/tracking": "5.4.0-alpha.
|
|
62
|
+
"@ember-data-mirror/request": "5.4.0-alpha.157",
|
|
63
|
+
"@ember-data-mirror/request-utils": "5.4.0-alpha.157",
|
|
64
|
+
"@ember-data-mirror/store": "5.4.0-alpha.157",
|
|
65
|
+
"@ember-data-mirror/tracking": "5.4.0-alpha.157",
|
|
66
66
|
"@glimmer/component": "^2.0.0",
|
|
67
|
-
"@warp-drive-mirror/core-types": "5.4.0-alpha.
|
|
68
|
-
"@warp-drive/internal-config": "5.4.0-alpha.
|
|
67
|
+
"@warp-drive-mirror/core-types": "5.4.0-alpha.157",
|
|
68
|
+
"@warp-drive/internal-config": "5.4.0-alpha.157",
|
|
69
69
|
"ember-source": "~6.3.0",
|
|
70
70
|
"@sqlite.org/sqlite-wasm": "3.46.0-build2",
|
|
71
|
-
"typescript": "^5.8.
|
|
71
|
+
"typescript": "^5.8.3",
|
|
72
72
|
"vite": "^5.4.15"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
@@ -77,6 +77,14 @@
|
|
|
77
77
|
"volta": {
|
|
78
78
|
"extends": "../../../../../../package.json"
|
|
79
79
|
},
|
|
80
|
+
"keywords": [
|
|
81
|
+
"ember-addon"
|
|
82
|
+
],
|
|
83
|
+
"ember-addon": {
|
|
84
|
+
"main": "addon-main.cjs",
|
|
85
|
+
"type": "addon",
|
|
86
|
+
"version": 2
|
|
87
|
+
},
|
|
80
88
|
"scripts": {
|
|
81
89
|
"lint": "eslint . --quiet --cache --cache-strategy=content",
|
|
82
90
|
"build:pkg": "vite build;",
|