nitropack-nightly 2.11.0-20250304-184554.fd96966f → 2.11.0-20250304-185512.71e338fc

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.
@@ -1,3 +1,3 @@
1
- const version = "2.11.0-20250304-184554.fd96966f";
1
+ const version = "2.11.0-20250304-185512.71e338fc";
2
2
 
3
3
  export { version };
@@ -1,3 +1,3 @@
1
- const version = "2.11.0-20250304-184554.fd96966f";
1
+ const version = "2.11.0-20250304-185512.71e338fc";
2
2
 
3
3
  export { version };
@@ -1,3 +1,3 @@
1
- const version = "2.11.0-20250304-184554.fd96966f";
1
+ const version = "2.11.0-20250304-185512.71e338fc";
2
2
 
3
3
  export { version };
@@ -1,6 +1,3 @@
1
- export type Json = string | number | boolean | {
2
- [key: string]: Json;
3
- } | Json[];
4
1
  type PascalCase<S extends string> = string extends S ? string : S extends `${infer T}-${infer U}` ? `${Capitalize<T>}${PascalCase<U>}` : Capitalize<S>;
5
2
  type CamelCase<S extends string> = string extends S ? string : S extends `${infer T}-${infer U}` ? `${T}${PascalCase<U>}` : S;
6
3
  export type CamelCaseKey<K extends PropertyKey> = K extends string ? Exclude<CamelCase<K>, ""> : K;
@@ -5,7 +5,6 @@
5
5
  *
6
6
  * Source: https://github.com/cloudflare/workers-sdk/blob/main/packages/wrangler/src/config/environment.ts
7
7
  */
8
- import type { Json } from "./_utils";
9
8
  /**
10
9
  * The `Environment` interface declares all the configuration fields that
11
10
  * can be specified for an environment.
@@ -414,7 +413,7 @@ export interface EnvironmentNonInheritable {
414
413
  * @default {}
415
414
  * @nonInheritable
416
415
  */
417
- vars: Record<string, string | Json>;
416
+ vars: Record<string, unknown>;
418
417
  /**
419
418
  * A list of durable objects that your Worker should be bound to.
420
419
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nitropack-nightly",
3
- "version": "2.11.0-20250304-184554.fd96966f",
3
+ "version": "2.11.0-20250304-185512.71e338fc",
4
4
  "description": "Build and Deploy Universal JavaScript Servers",
5
5
  "repository": "nitrojs/nitro",
6
6
  "license": "MIT",