mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2025-12-09 22:30:41 -07:00
node_modules: upgrade
This commit is contained in:
2
node_modules/yaml/dist/schema/core/bool.d.ts
generated
vendored
2
node_modules/yaml/dist/schema/core/bool.d.ts
generated
vendored
@@ -1,4 +1,4 @@
|
||||
import type { ScalarTag } from '../types.js';
|
||||
import type { ScalarTag } from '../types';
|
||||
export declare const boolTag: ScalarTag & {
|
||||
test: RegExp;
|
||||
};
|
||||
|
||||
2
node_modules/yaml/dist/schema/core/float.d.ts
generated
vendored
2
node_modules/yaml/dist/schema/core/float.d.ts
generated
vendored
@@ -1,4 +1,4 @@
|
||||
import type { ScalarTag } from '../types.js';
|
||||
import type { ScalarTag } from '../types';
|
||||
export declare const floatNaN: ScalarTag;
|
||||
export declare const floatExp: ScalarTag;
|
||||
export declare const float: ScalarTag;
|
||||
|
||||
2
node_modules/yaml/dist/schema/core/float.js
generated
vendored
2
node_modules/yaml/dist/schema/core/float.js
generated
vendored
@@ -7,7 +7,7 @@ const floatNaN = {
|
||||
identify: value => typeof value === 'number',
|
||||
default: true,
|
||||
tag: 'tag:yaml.org,2002:float',
|
||||
test: /^(?:[-+]?\.(?:inf|Inf|INF|nan|NaN|NAN))$/,
|
||||
test: /^(?:[-+]?\.(?:inf|Inf|INF)|\.nan|\.NaN|\.NAN)$/,
|
||||
resolve: str => str.slice(-3).toLowerCase() === 'nan'
|
||||
? NaN
|
||||
: str[0] === '-'
|
||||
|
||||
2
node_modules/yaml/dist/schema/core/int.d.ts
generated
vendored
2
node_modules/yaml/dist/schema/core/int.d.ts
generated
vendored
@@ -1,4 +1,4 @@
|
||||
import type { ScalarTag } from '../types.js';
|
||||
import type { ScalarTag } from '../types';
|
||||
export declare const intOct: ScalarTag;
|
||||
export declare const int: ScalarTag;
|
||||
export declare const intHex: ScalarTag;
|
||||
|
||||
2
node_modules/yaml/dist/schema/core/schema.d.ts
generated
vendored
2
node_modules/yaml/dist/schema/core/schema.d.ts
generated
vendored
@@ -1 +1 @@
|
||||
export declare const schema: (import("../types.js").CollectionTag | import("../types.js").ScalarTag)[];
|
||||
export declare const schema: (import('../types').CollectionTag | import('../types').ScalarTag)[];
|
||||
|
||||
Reference in New Issue
Block a user