@holo-js/queue 0.1.9 → 0.2.1
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 +4 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -395,7 +395,10 @@ function isModuleNotFoundError(error) {
|
|
|
395
395
|
async function loadRedisDriverModule() {
|
|
396
396
|
try {
|
|
397
397
|
const specifier = "@holo-js/queue-redis";
|
|
398
|
-
return await import(
|
|
398
|
+
return await import(
|
|
399
|
+
/* @vite-ignore */
|
|
400
|
+
specifier
|
|
401
|
+
);
|
|
399
402
|
} catch (error) {
|
|
400
403
|
if (isModuleNotFoundError(error)) {
|
|
401
404
|
throw new Error("[@holo-js/queue] Redis queue support requires @holo-js/queue-redis to be installed.", {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holo-js/queue",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Holo-JS Framework - queue contracts and config helpers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"test": "vitest --run"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@holo-js/queue-redis": "^0.1
|
|
26
|
+
"@holo-js/queue-redis": "^0.2.1"
|
|
27
27
|
},
|
|
28
28
|
"peerDependenciesMeta": {
|
|
29
29
|
"@holo-js/queue-redis": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@holo-js/queue-redis": "^0.1
|
|
34
|
+
"@holo-js/queue-redis": "^0.2.1",
|
|
35
35
|
"@types/node": "^22.10.2",
|
|
36
36
|
"tsup": "^8.3.5",
|
|
37
37
|
"typescript": "^5.7.2",
|