nuxt-cf-jobs 0.4.3 → 0.4.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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-cf-jobs",
3
3
  "configKey": "cfJobs",
4
- "version": "0.4.3",
4
+ "version": "0.4.4",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -21,5 +21,7 @@ export default defineNitroPlugin((nitroApp) => {
21
21
  env: existing ? { ...runtime.env, ...existing } : runtime.env
22
22
  };
23
23
  });
24
+ const taskEnvHost = globalThis;
25
+ taskEnvHost.__env__ = { ...runtime.env, ...taskEnvHost.__env__ ?? {} };
24
26
  nitroApp.hooks.hook("close", () => runtime.dispose());
25
27
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-cf-jobs",
3
3
  "type": "module",
4
- "version": "0.4.3",
4
+ "version": "0.4.4",
5
5
  "description": "Nuxt module for typed Cloudflare queue jobs.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",