mirror of
https://github.com/deployphp/action.git
synced 2025-06-29 20:54:14 +00:00
Add node_modules
This commit is contained in:
parent
e1f786311a
commit
554eb0b122
994 changed files with 195567 additions and 0 deletions
39
node_modules/yaml/dist/schema/yaml-1.1/schema.js
generated
vendored
Normal file
39
node_modules/yaml/dist/schema/yaml-1.1/schema.js
generated
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
'use strict';
|
||||
|
||||
var map = require('../common/map.js');
|
||||
var _null = require('../common/null.js');
|
||||
var seq = require('../common/seq.js');
|
||||
var string = require('../common/string.js');
|
||||
var binary = require('./binary.js');
|
||||
var bool = require('./bool.js');
|
||||
var float = require('./float.js');
|
||||
var int = require('./int.js');
|
||||
var omap = require('./omap.js');
|
||||
var pairs = require('./pairs.js');
|
||||
var set = require('./set.js');
|
||||
var timestamp = require('./timestamp.js');
|
||||
|
||||
const schema = [
|
||||
map.map,
|
||||
seq.seq,
|
||||
string.string,
|
||||
_null.nullTag,
|
||||
bool.trueTag,
|
||||
bool.falseTag,
|
||||
int.intBin,
|
||||
int.intOct,
|
||||
int.int,
|
||||
int.intHex,
|
||||
float.floatNaN,
|
||||
float.floatExp,
|
||||
float.float,
|
||||
binary.binary,
|
||||
omap.omap,
|
||||
pairs.pairs,
|
||||
set.set,
|
||||
timestamp.intTime,
|
||||
timestamp.floatTime,
|
||||
timestamp.timestamp
|
||||
];
|
||||
|
||||
exports.schema = schema;
|
Loading…
Add table
Add a link
Reference in a new issue