@holo-js/cache 0.1.3 → 0.1.4
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/index.mjs +8 -2
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -85,7 +85,10 @@ function normalizeDatabaseModuleLoadError(error, expectedSpecifier = "@holo-js/c
|
|
|
85
85
|
async function loadDatabaseDriverModule() {
|
|
86
86
|
try {
|
|
87
87
|
const specifier = "@holo-js/cache-db";
|
|
88
|
-
return await import(
|
|
88
|
+
return await import(
|
|
89
|
+
/* webpackIgnore: true */
|
|
90
|
+
specifier
|
|
91
|
+
);
|
|
89
92
|
} catch (error) {
|
|
90
93
|
throw normalizeDatabaseModuleLoadError(error, "@holo-js/cache-db");
|
|
91
94
|
}
|
|
@@ -750,7 +753,10 @@ function normalizeRedisModuleLoadError(error) {
|
|
|
750
753
|
async function loadRedisDriverModule() {
|
|
751
754
|
try {
|
|
752
755
|
const specifier = "@holo-js/cache-redis";
|
|
753
|
-
return await import(
|
|
756
|
+
return await import(
|
|
757
|
+
/* webpackIgnore: true */
|
|
758
|
+
specifier
|
|
759
|
+
);
|
|
754
760
|
} catch (error) {
|
|
755
761
|
throw normalizeRedisModuleLoadError(error);
|
|
756
762
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holo-js/cache",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Holo-JS Framework - cache contracts, config helpers, serialization, and runtime seams",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"test": "vitest --run"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@holo-js/config": "^0.1.
|
|
31
|
+
"@holo-js/config": "^0.1.4"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/node": "^22.10.2",
|