@nuxt/schema-nightly 4.2.3-29422039.47e05245 → 4.2.3-29424584.c1b3590f

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.
@@ -292,6 +292,6 @@ declare global {
292
292
  }
293
293
  }
294
294
 
295
- declare const builders: string[];
295
+ declare const builders: readonly ["vite", "webpack"];
296
296
 
297
297
  export { builders };
@@ -292,6 +292,6 @@ declare global {
292
292
  }
293
293
  }
294
294
 
295
- declare const builders: string[];
295
+ declare const builders: readonly ["vite", "webpack"];
296
296
 
297
297
  export { builders };
package/dist/index.d.mts CHANGED
@@ -2736,10 +2736,7 @@ type DeepPartial<T> = T extends Function ? T : T extends Record<string, any> ? {
2736
2736
  [P in keyof T]?: DeepPartial<T[P]>;
2737
2737
  } : T;
2738
2738
  type UpperSnakeCase<S extends string> = Uppercase<SnakeCase<S>>;
2739
- declare const message: unique symbol;
2740
- type RuntimeValue<T, B extends string> = T & {
2741
- [message]?: B;
2742
- };
2739
+ type RuntimeValue<T, B extends string> = T & {};
2743
2740
  type Overrideable<T extends Record<string, any>, Path extends string = ''> = {
2744
2741
  [K in keyof T]?: K extends string ? unknown extends T[K] ? unknown : T[K] extends Record<string, unknown> ? RuntimeValue<Overrideable<T[K], `${Path}_${UpperSnakeCase<K>}`>, `You can override this value at runtime with NUXT${Path}_${UpperSnakeCase<K>}`> : RuntimeValue<T[K], `You can override this value at runtime with NUXT${Path}_${UpperSnakeCase<K>}`> : K extends number ? T[K] : never;
2745
2742
  };
package/dist/index.d.ts CHANGED
@@ -2736,10 +2736,7 @@ type DeepPartial<T> = T extends Function ? T : T extends Record<string, any> ? {
2736
2736
  [P in keyof T]?: DeepPartial<T[P]>;
2737
2737
  } : T;
2738
2738
  type UpperSnakeCase<S extends string> = Uppercase<SnakeCase<S>>;
2739
- declare const message: unique symbol;
2740
- type RuntimeValue<T, B extends string> = T & {
2741
- [message]?: B;
2742
- };
2739
+ type RuntimeValue<T, B extends string> = T & {};
2743
2740
  type Overrideable<T extends Record<string, any>, Path extends string = ''> = {
2744
2741
  [K in keyof T]?: K extends string ? unknown extends T[K] ? unknown : T[K] extends Record<string, unknown> ? RuntimeValue<Overrideable<T[K], `${Path}_${UpperSnakeCase<K>}`>, `You can override this value at runtime with NUXT${Path}_${UpperSnakeCase<K>}`> : RuntimeValue<T[K], `You can override this value at runtime with NUXT${Path}_${UpperSnakeCase<K>}`> : K extends number ? T[K] : never;
2745
2742
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/schema-nightly",
3
- "version": "4.2.3-29422039.47e05245",
3
+ "version": "4.2.3-29424584.c1b3590f",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",
@@ -82,6 +82,7 @@
82
82
  },
83
83
  "_name": "@nuxt/schema",
84
84
  "scripts": {
85
+ "build:stub": "unbuild --stub",
85
86
  "test:attw": "attw --pack"
86
87
  }
87
88
  }