node_modules: upgrade

This commit is contained in:
Dawid Dziurla
2024-01-17 10:08:10 +01:00
parent 9ff0bc8d99
commit 00765f79cf
320 changed files with 31840 additions and 1039 deletions

19
node_modules/yaml/dist/options.d.ts generated vendored
View File

@@ -8,7 +8,7 @@ import type { LineCounter } from './parse/line-counter.js';
import type { Schema } from './schema/Schema.js';
import type { Tags } from './schema/tags.js';
import type { CollectionTag, ScalarTag } from './schema/types.js';
export declare type ParseOptions = {
export type ParseOptions = {
/**
* Whether integers should be parsed into BigInt rather than number values.
*
@@ -56,7 +56,7 @@ export declare type ParseOptions = {
*/
uniqueKeys?: boolean | ((a: ParsedNode, b: ParsedNode) => boolean);
};
export declare type DocumentOptions = {
export type DocumentOptions = {
/**
* @internal
* Used internally by Composer. If set and includes an explicit version,
@@ -76,7 +76,7 @@ export declare type DocumentOptions = {
*/
version?: '1.1' | '1.2' | 'next';
};
export declare type SchemaOptions = {
export type SchemaOptions = {
/**
* When parsing, warn about compatibility issues with the given schema.
* When stringifying, use scalar styles that are parsed correctly
@@ -133,7 +133,7 @@ export declare type SchemaOptions = {
*/
toStringDefaults?: ToStringOptions;
};
export declare type CreateNodeOptions = {
export type CreateNodeOptions = {
/**
* During node construction, use anchors and aliases to keep strictly equal
* non-null objects as equivalent in YAML.
@@ -163,7 +163,7 @@ export declare type CreateNodeOptions = {
*/
tag?: string;
};
export declare type ToJSOptions = {
export type ToJSOptions = {
/**
* Use Map rather than Object to represent mappings.
*
@@ -189,7 +189,7 @@ export declare type ToJSOptions = {
*/
reviver?: Reviver;
};
export declare type ToStringOptions = {
export type ToStringOptions = {
/**
* Use block quote styles for scalar values where applicable.
* Set to `false` to disable block quotes completely.
@@ -264,6 +264,13 @@ export declare type ToStringOptions = {
* Default: `'false'`
*/
falseStr?: string;
/**
* When true, a single space of padding will be added inside the delimiters
* of non-empty single-line flow collections.
*
* Default: `true`
*/
flowCollectionPadding?: boolean;
/**
* The number of spaces to use when indenting code.
*