Update npm packages

Add --dump-dimensions option to rsx:debug for layout debugging
Mark framework publish

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-03 21:48:28 +00:00
parent cff287e870
commit 8d92b287be
1226 changed files with 16280 additions and 19461 deletions

20
node_modules/prettier/index.d.ts generated vendored
View File

@@ -480,7 +480,7 @@ export interface Parser<T = any> {
locStart: (node: T) => number;
locEnd: (node: T) => number;
preprocess?:
| ((text: string, options: ParserOptions<T>) => string)
| ((text: string, options: ParserOptions<T>) => string | Promise<string>)
| undefined;
}
@@ -491,6 +491,12 @@ export interface Printer<T = any> {
print: (path: AstPath<T>) => Doc,
args?: unknown,
): Doc;
printPrettierIgnored?(
path: AstPath<T>,
options: ParserOptions<T>,
print: (path: AstPath<T>) => Doc,
args?: unknown,
): Doc;
embed?:
| ((
path: AstPath,
@@ -520,7 +526,7 @@ export interface Printer<T = any> {
| ((original: any, cloned: any, parent: any) => any)
| undefined;
hasPrettierIgnore?: ((path: AstPath<T>) => boolean) | undefined;
canAttachComment?: ((node: T) => boolean) | undefined;
canAttachComment?: ((node: T, ancestors: T[]) => boolean) | undefined;
isBlockComment?: ((node: T) => boolean) | undefined;
willPrintOwnComments?: ((path: AstPath<T>) => boolean) | undefined;
printComment?:
@@ -760,14 +766,14 @@ export interface BooleanSupportOption extends BaseSupportOption<"boolean"> {
oppositeDescription?: string | undefined;
}
export interface BooleanArraySupportOption
extends BaseSupportOption<"boolean"> {
export interface BooleanArraySupportOption extends BaseSupportOption<"boolean"> {
default?: Array<{ value: boolean[] }> | undefined;
array: true;
}
export interface ChoiceSupportOption<Value = any>
extends BaseSupportOption<"choice"> {
export interface ChoiceSupportOption<
Value = any,
> extends BaseSupportOption<"choice"> {
default?: Value | Array<{ value: Value }> | undefined;
description: string;
choices: Array<{
@@ -838,7 +844,7 @@ export function getSupportInfo(
*/
export const version: string;
// https://github.com/prettier/prettier/blob/next/src/utils/public.js
// https://github.com/prettier/prettier/blob/main/src/utilities/public.js
export namespace util {
interface SkipOptions {
backwards?: boolean | undefined;