vercel 23.1.3-canary.44 → 23.1.3-canary.48
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.
- package/dist/index.js +1215 -645
- package/package.json +5 -5
package/dist/index.js
CHANGED
@@ -192306,14 +192306,484 @@ IconvLiteDecoderStream.prototype.collect = function(cb) {
|
|
192306
192306
|
|
192307
192307
|
|
192308
192308
|
|
192309
|
+
/***/ }),
|
192310
|
+
|
192311
|
+
/***/ 3556:
|
192312
|
+
/***/ ((module) => {
|
192313
|
+
|
192314
|
+
// A simple implementation of make-array
|
192315
|
+
function make_array (subject) {
|
192316
|
+
return Array.isArray(subject)
|
192317
|
+
? subject
|
192318
|
+
: [subject]
|
192319
|
+
}
|
192320
|
+
|
192321
|
+
const REGEX_BLANK_LINE = /^\s+$/
|
192322
|
+
const REGEX_LEADING_EXCAPED_EXCLAMATION = /^\\!/
|
192323
|
+
const REGEX_LEADING_EXCAPED_HASH = /^\\#/
|
192324
|
+
const SLASH = '/'
|
192325
|
+
const KEY_IGNORE = typeof Symbol !== 'undefined'
|
192326
|
+
? Symbol.for('node-ignore')
|
192327
|
+
/* istanbul ignore next */
|
192328
|
+
: 'node-ignore'
|
192329
|
+
|
192330
|
+
const define = (object, key, value) =>
|
192331
|
+
Object.defineProperty(object, key, {value})
|
192332
|
+
|
192333
|
+
const REGEX_REGEXP_RANGE = /([0-z])-([0-z])/g
|
192334
|
+
|
192335
|
+
// Sanitize the range of a regular expression
|
192336
|
+
// The cases are complicated, see test cases for details
|
192337
|
+
const sanitizeRange = range => range.replace(
|
192338
|
+
REGEX_REGEXP_RANGE,
|
192339
|
+
(match, from, to) => from.charCodeAt(0) <= to.charCodeAt(0)
|
192340
|
+
? match
|
192341
|
+
// Invalid range (out of order) which is ok for gitignore rules but
|
192342
|
+
// fatal for JavaScript regular expression, so eliminate it.
|
192343
|
+
: ''
|
192344
|
+
)
|
192345
|
+
|
192346
|
+
// > If the pattern ends with a slash,
|
192347
|
+
// > it is removed for the purpose of the following description,
|
192348
|
+
// > but it would only find a match with a directory.
|
192349
|
+
// > In other words, foo/ will match a directory foo and paths underneath it,
|
192350
|
+
// > but will not match a regular file or a symbolic link foo
|
192351
|
+
// > (this is consistent with the way how pathspec works in general in Git).
|
192352
|
+
// '`foo/`' will not match regular file '`foo`' or symbolic link '`foo`'
|
192353
|
+
// -> ignore-rules will not deal with it, because it costs extra `fs.stat` call
|
192354
|
+
// you could use option `mark: true` with `glob`
|
192355
|
+
|
192356
|
+
// '`foo/`' should not continue with the '`..`'
|
192357
|
+
const DEFAULT_REPLACER_PREFIX = [
|
192358
|
+
|
192359
|
+
// > Trailing spaces are ignored unless they are quoted with backslash ("\")
|
192360
|
+
[
|
192361
|
+
// (a\ ) -> (a )
|
192362
|
+
// (a ) -> (a)
|
192363
|
+
// (a \ ) -> (a )
|
192364
|
+
/\\?\s+$/,
|
192365
|
+
match => match.indexOf('\\') === 0
|
192366
|
+
? ' '
|
192367
|
+
: ''
|
192368
|
+
],
|
192369
|
+
|
192370
|
+
// replace (\ ) with ' '
|
192371
|
+
[
|
192372
|
+
/\\\s/g,
|
192373
|
+
() => ' '
|
192374
|
+
],
|
192375
|
+
|
192376
|
+
// Escape metacharacters
|
192377
|
+
// which is written down by users but means special for regular expressions.
|
192378
|
+
|
192379
|
+
// > There are 12 characters with special meanings:
|
192380
|
+
// > - the backslash \,
|
192381
|
+
// > - the caret ^,
|
192382
|
+
// > - the dollar sign $,
|
192383
|
+
// > - the period or dot .,
|
192384
|
+
// > - the vertical bar or pipe symbol |,
|
192385
|
+
// > - the question mark ?,
|
192386
|
+
// > - the asterisk or star *,
|
192387
|
+
// > - the plus sign +,
|
192388
|
+
// > - the opening parenthesis (,
|
192389
|
+
// > - the closing parenthesis ),
|
192390
|
+
// > - and the opening square bracket [,
|
192391
|
+
// > - the opening curly brace {,
|
192392
|
+
// > These special characters are often called "metacharacters".
|
192393
|
+
[
|
192394
|
+
/[\\^$.|*+(){]/g,
|
192395
|
+
match => `\\${match}`
|
192396
|
+
],
|
192397
|
+
|
192398
|
+
[
|
192399
|
+
// > [abc] matches any character inside the brackets
|
192400
|
+
// > (in this case a, b, or c);
|
192401
|
+
/\[([^\]/]*)($|\])/g,
|
192402
|
+
(match, p1, p2) => p2 === ']'
|
192403
|
+
? `[${sanitizeRange(p1)}]`
|
192404
|
+
: `\\${match}`
|
192405
|
+
],
|
192406
|
+
|
192407
|
+
[
|
192408
|
+
// > a question mark (?) matches a single character
|
192409
|
+
/(?!\\)\?/g,
|
192410
|
+
() => '[^/]'
|
192411
|
+
],
|
192412
|
+
|
192413
|
+
// leading slash
|
192414
|
+
[
|
192415
|
+
|
192416
|
+
// > A leading slash matches the beginning of the pathname.
|
192417
|
+
// > For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c".
|
192418
|
+
// A leading slash matches the beginning of the pathname
|
192419
|
+
/^\//,
|
192420
|
+
() => '^'
|
192421
|
+
],
|
192422
|
+
|
192423
|
+
// replace special metacharacter slash after the leading slash
|
192424
|
+
[
|
192425
|
+
/\//g,
|
192426
|
+
() => '\\/'
|
192427
|
+
],
|
192428
|
+
|
192429
|
+
[
|
192430
|
+
// > A leading "**" followed by a slash means match in all directories.
|
192431
|
+
// > For example, "**/foo" matches file or directory "foo" anywhere,
|
192432
|
+
// > the same as pattern "foo".
|
192433
|
+
// > "**/foo/bar" matches file or directory "bar" anywhere that is directly
|
192434
|
+
// > under directory "foo".
|
192435
|
+
// Notice that the '*'s have been replaced as '\\*'
|
192436
|
+
/^\^*\\\*\\\*\\\//,
|
192437
|
+
|
192438
|
+
// '**/foo' <-> 'foo'
|
192439
|
+
() => '^(?:.*\\/)?'
|
192440
|
+
]
|
192441
|
+
]
|
192442
|
+
|
192443
|
+
const DEFAULT_REPLACER_SUFFIX = [
|
192444
|
+
// starting
|
192445
|
+
[
|
192446
|
+
// there will be no leading '/'
|
192447
|
+
// (which has been replaced by section "leading slash")
|
192448
|
+
// If starts with '**', adding a '^' to the regular expression also works
|
192449
|
+
/^(?=[^^])/,
|
192450
|
+
function startingReplacer () {
|
192451
|
+
return !/\/(?!$)/.test(this)
|
192452
|
+
// > If the pattern does not contain a slash /,
|
192453
|
+
// > Git treats it as a shell glob pattern
|
192454
|
+
// Actually, if there is only a trailing slash,
|
192455
|
+
// git also treats it as a shell glob pattern
|
192456
|
+
? '(?:^|\\/)'
|
192457
|
+
|
192458
|
+
// > Otherwise, Git treats the pattern as a shell glob suitable for
|
192459
|
+
// > consumption by fnmatch(3)
|
192460
|
+
: '^'
|
192461
|
+
}
|
192462
|
+
],
|
192463
|
+
|
192464
|
+
// two globstars
|
192465
|
+
[
|
192466
|
+
// Use lookahead assertions so that we could match more than one `'/**'`
|
192467
|
+
/\\\/\\\*\\\*(?=\\\/|$)/g,
|
192468
|
+
|
192469
|
+
// Zero, one or several directories
|
192470
|
+
// should not use '*', or it will be replaced by the next replacer
|
192471
|
+
|
192472
|
+
// Check if it is not the last `'/**'`
|
192473
|
+
(match, index, str) => index + 6 < str.length
|
192474
|
+
|
192475
|
+
// case: /**/
|
192476
|
+
// > A slash followed by two consecutive asterisks then a slash matches
|
192477
|
+
// > zero or more directories.
|
192478
|
+
// > For example, "a/**/b" matches "a/b", "a/x/b", "a/x/y/b" and so on.
|
192479
|
+
// '/**/'
|
192480
|
+
? '(?:\\/[^\\/]+)*'
|
192481
|
+
|
192482
|
+
// case: /**
|
192483
|
+
// > A trailing `"/**"` matches everything inside.
|
192484
|
+
|
192485
|
+
// #21: everything inside but it should not include the current folder
|
192486
|
+
: '\\/.+'
|
192487
|
+
],
|
192488
|
+
|
192489
|
+
// intermediate wildcards
|
192490
|
+
[
|
192491
|
+
// Never replace escaped '*'
|
192492
|
+
// ignore rule '\*' will match the path '*'
|
192493
|
+
|
192494
|
+
// 'abc.*/' -> go
|
192495
|
+
// 'abc.*' -> skip this rule
|
192496
|
+
/(^|[^\\]+)\\\*(?=.+)/g,
|
192497
|
+
|
192498
|
+
// '*.js' matches '.js'
|
192499
|
+
// '*.js' doesn't match 'abc'
|
192500
|
+
(match, p1) => `${p1}[^\\/]*`
|
192501
|
+
],
|
192502
|
+
|
192503
|
+
// trailing wildcard
|
192504
|
+
[
|
192505
|
+
/(\^|\\\/)?\\\*$/,
|
192506
|
+
(match, p1) => {
|
192507
|
+
const prefix = p1
|
192508
|
+
// '\^':
|
192509
|
+
// '/*' does not match ''
|
192510
|
+
// '/*' does not match everything
|
192511
|
+
|
192512
|
+
// '\\\/':
|
192513
|
+
// 'abc/*' does not match 'abc/'
|
192514
|
+
? `${p1}[^/]+`
|
192515
|
+
|
192516
|
+
// 'a*' matches 'a'
|
192517
|
+
// 'a*' matches 'aa'
|
192518
|
+
: '[^/]*'
|
192519
|
+
|
192520
|
+
return `${prefix}(?=$|\\/$)`
|
192521
|
+
}
|
192522
|
+
],
|
192523
|
+
|
192524
|
+
[
|
192525
|
+
// unescape
|
192526
|
+
/\\\\\\/g,
|
192527
|
+
() => '\\'
|
192528
|
+
]
|
192529
|
+
]
|
192530
|
+
|
192531
|
+
const POSITIVE_REPLACERS = [
|
192532
|
+
...DEFAULT_REPLACER_PREFIX,
|
192533
|
+
|
192534
|
+
// 'f'
|
192535
|
+
// matches
|
192536
|
+
// - /f(end)
|
192537
|
+
// - /f/
|
192538
|
+
// - (start)f(end)
|
192539
|
+
// - (start)f/
|
192540
|
+
// doesn't match
|
192541
|
+
// - oof
|
192542
|
+
// - foo
|
192543
|
+
// pseudo:
|
192544
|
+
// -> (^|/)f(/|$)
|
192545
|
+
|
192546
|
+
// ending
|
192547
|
+
[
|
192548
|
+
// 'js' will not match 'js.'
|
192549
|
+
// 'ab' will not match 'abc'
|
192550
|
+
/(?:[^*/])$/,
|
192551
|
+
|
192552
|
+
// 'js*' will not match 'a.js'
|
192553
|
+
// 'js/' will not match 'a.js'
|
192554
|
+
// 'js' will match 'a.js' and 'a.js/'
|
192555
|
+
match => `${match}(?=$|\\/)`
|
192556
|
+
],
|
192557
|
+
|
192558
|
+
...DEFAULT_REPLACER_SUFFIX
|
192559
|
+
]
|
192560
|
+
|
192561
|
+
const NEGATIVE_REPLACERS = [
|
192562
|
+
...DEFAULT_REPLACER_PREFIX,
|
192563
|
+
|
192564
|
+
// #24, #38
|
192565
|
+
// The MISSING rule of [gitignore docs](https://git-scm.com/docs/gitignore)
|
192566
|
+
// A negative pattern without a trailing wildcard should not
|
192567
|
+
// re-include the things inside that directory.
|
192568
|
+
|
192569
|
+
// eg:
|
192570
|
+
// ['node_modules/*', '!node_modules']
|
192571
|
+
// should ignore `node_modules/a.js`
|
192572
|
+
[
|
192573
|
+
/(?:[^*])$/,
|
192574
|
+
match => `${match}(?=$|\\/$)`
|
192575
|
+
],
|
192576
|
+
|
192577
|
+
...DEFAULT_REPLACER_SUFFIX
|
192578
|
+
]
|
192579
|
+
|
192580
|
+
// A simple cache, because an ignore rule only has only one certain meaning
|
192581
|
+
const cache = Object.create(null)
|
192582
|
+
|
192583
|
+
// @param {pattern}
|
192584
|
+
const make_regex = (pattern, negative, ignorecase) => {
|
192585
|
+
const r = cache[pattern]
|
192586
|
+
if (r) {
|
192587
|
+
return r
|
192588
|
+
}
|
192589
|
+
|
192590
|
+
const replacers = negative
|
192591
|
+
? NEGATIVE_REPLACERS
|
192592
|
+
: POSITIVE_REPLACERS
|
192593
|
+
|
192594
|
+
const source = replacers.reduce(
|
192595
|
+
(prev, current) => prev.replace(current[0], current[1].bind(pattern)),
|
192596
|
+
pattern
|
192597
|
+
)
|
192598
|
+
|
192599
|
+
return cache[pattern] = ignorecase
|
192600
|
+
? new RegExp(source, 'i')
|
192601
|
+
: new RegExp(source)
|
192602
|
+
}
|
192603
|
+
|
192604
|
+
// > A blank line matches no files, so it can serve as a separator for readability.
|
192605
|
+
const checkPattern = pattern => pattern
|
192606
|
+
&& typeof pattern === 'string'
|
192607
|
+
&& !REGEX_BLANK_LINE.test(pattern)
|
192608
|
+
|
192609
|
+
// > A line starting with # serves as a comment.
|
192610
|
+
&& pattern.indexOf('#') !== 0
|
192611
|
+
|
192612
|
+
const createRule = (pattern, ignorecase) => {
|
192613
|
+
const origin = pattern
|
192614
|
+
let negative = false
|
192615
|
+
|
192616
|
+
// > An optional prefix "!" which negates the pattern;
|
192617
|
+
if (pattern.indexOf('!') === 0) {
|
192618
|
+
negative = true
|
192619
|
+
pattern = pattern.substr(1)
|
192620
|
+
}
|
192621
|
+
|
192622
|
+
pattern = pattern
|
192623
|
+
// > Put a backslash ("\") in front of the first "!" for patterns that
|
192624
|
+
// > begin with a literal "!", for example, `"\!important!.txt"`.
|
192625
|
+
.replace(REGEX_LEADING_EXCAPED_EXCLAMATION, '!')
|
192626
|
+
// > Put a backslash ("\") in front of the first hash for patterns that
|
192627
|
+
// > begin with a hash.
|
192628
|
+
.replace(REGEX_LEADING_EXCAPED_HASH, '#')
|
192629
|
+
|
192630
|
+
const regex = make_regex(pattern, negative, ignorecase)
|
192631
|
+
|
192632
|
+
return {
|
192633
|
+
origin,
|
192634
|
+
pattern,
|
192635
|
+
negative,
|
192636
|
+
regex
|
192637
|
+
}
|
192638
|
+
}
|
192639
|
+
|
192640
|
+
class IgnoreBase {
|
192641
|
+
constructor ({
|
192642
|
+
ignorecase = true
|
192643
|
+
} = {}) {
|
192644
|
+
this._rules = []
|
192645
|
+
this._ignorecase = ignorecase
|
192646
|
+
define(this, KEY_IGNORE, true)
|
192647
|
+
this._initCache()
|
192648
|
+
}
|
192649
|
+
|
192650
|
+
_initCache () {
|
192651
|
+
this._cache = Object.create(null)
|
192652
|
+
}
|
192653
|
+
|
192654
|
+
// @param {Array.<string>|string|Ignore} pattern
|
192655
|
+
add (pattern) {
|
192656
|
+
this._added = false
|
192657
|
+
|
192658
|
+
if (typeof pattern === 'string') {
|
192659
|
+
pattern = pattern.split(/\r?\n/g)
|
192660
|
+
}
|
192661
|
+
|
192662
|
+
make_array(pattern).forEach(this._addPattern, this)
|
192663
|
+
|
192664
|
+
// Some rules have just added to the ignore,
|
192665
|
+
// making the behavior changed.
|
192666
|
+
if (this._added) {
|
192667
|
+
this._initCache()
|
192668
|
+
}
|
192669
|
+
|
192670
|
+
return this
|
192671
|
+
}
|
192672
|
+
|
192673
|
+
// legacy
|
192674
|
+
addPattern (pattern) {
|
192675
|
+
return this.add(pattern)
|
192676
|
+
}
|
192677
|
+
|
192678
|
+
_addPattern (pattern) {
|
192679
|
+
// #32
|
192680
|
+
if (pattern && pattern[KEY_IGNORE]) {
|
192681
|
+
this._rules = this._rules.concat(pattern._rules)
|
192682
|
+
this._added = true
|
192683
|
+
return
|
192684
|
+
}
|
192685
|
+
|
192686
|
+
if (checkPattern(pattern)) {
|
192687
|
+
const rule = createRule(pattern, this._ignorecase)
|
192688
|
+
this._added = true
|
192689
|
+
this._rules.push(rule)
|
192690
|
+
}
|
192691
|
+
}
|
192692
|
+
|
192693
|
+
filter (paths) {
|
192694
|
+
return make_array(paths).filter(path => this._filter(path))
|
192695
|
+
}
|
192696
|
+
|
192697
|
+
createFilter () {
|
192698
|
+
return path => this._filter(path)
|
192699
|
+
}
|
192700
|
+
|
192701
|
+
ignores (path) {
|
192702
|
+
return !this._filter(path)
|
192703
|
+
}
|
192704
|
+
|
192705
|
+
// @returns `Boolean` true if the `path` is NOT ignored
|
192706
|
+
_filter (path, slices) {
|
192707
|
+
if (!path) {
|
192708
|
+
return false
|
192709
|
+
}
|
192710
|
+
|
192711
|
+
if (path in this._cache) {
|
192712
|
+
return this._cache[path]
|
192713
|
+
}
|
192714
|
+
|
192715
|
+
if (!slices) {
|
192716
|
+
// path/to/a.js
|
192717
|
+
// ['path', 'to', 'a.js']
|
192718
|
+
slices = path.split(SLASH)
|
192719
|
+
}
|
192720
|
+
|
192721
|
+
slices.pop()
|
192722
|
+
|
192723
|
+
return this._cache[path] = slices.length
|
192724
|
+
// > It is not possible to re-include a file if a parent directory of
|
192725
|
+
// > that file is excluded.
|
192726
|
+
// If the path contains a parent directory, check the parent first
|
192727
|
+
? this._filter(slices.join(SLASH) + SLASH, slices)
|
192728
|
+
&& this._test(path)
|
192729
|
+
|
192730
|
+
// Or only test the path
|
192731
|
+
: this._test(path)
|
192732
|
+
}
|
192733
|
+
|
192734
|
+
// @returns {Boolean} true if a file is NOT ignored
|
192735
|
+
_test (path) {
|
192736
|
+
// Explicitly define variable type by setting matched to `0`
|
192737
|
+
let matched = 0
|
192738
|
+
|
192739
|
+
this._rules.forEach(rule => {
|
192740
|
+
// if matched = true, then we only test negative rules
|
192741
|
+
// if matched = false, then we test non-negative rules
|
192742
|
+
if (!(matched ^ rule.negative)) {
|
192743
|
+
matched = rule.negative ^ rule.regex.test(path)
|
192744
|
+
}
|
192745
|
+
})
|
192746
|
+
|
192747
|
+
return !matched
|
192748
|
+
}
|
192749
|
+
}
|
192750
|
+
|
192751
|
+
// Windows
|
192752
|
+
// --------------------------------------------------------------
|
192753
|
+
/* istanbul ignore if */
|
192754
|
+
if (
|
192755
|
+
// Detect `process` so that it can run in browsers.
|
192756
|
+
typeof process !== 'undefined'
|
192757
|
+
&& (
|
192758
|
+
process.env && process.env.IGNORE_TEST_WIN32
|
192759
|
+
|| process.platform === 'win32'
|
192760
|
+
)
|
192761
|
+
) {
|
192762
|
+
const filter = IgnoreBase.prototype._filter
|
192763
|
+
|
192764
|
+
/* eslint no-control-regex: "off" */
|
192765
|
+
const make_posix = str => /^\\\\\?\\/.test(str)
|
192766
|
+
|| /[^\x00-\x80]+/.test(str)
|
192767
|
+
? str
|
192768
|
+
: str.replace(/\\/g, '/')
|
192769
|
+
|
192770
|
+
IgnoreBase.prototype._filter = function filterWin32 (path, slices) {
|
192771
|
+
path = make_posix(path)
|
192772
|
+
return filter.call(this, path, slices)
|
192773
|
+
}
|
192774
|
+
}
|
192775
|
+
|
192776
|
+
module.exports = options => new IgnoreBase(options)
|
192777
|
+
|
192778
|
+
|
192309
192779
|
/***/ }),
|
192310
192780
|
|
192311
192781
|
/***/ 9442:
|
192312
|
-
/***/ ((module, __unused_webpack_exports,
|
192782
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_240162__) => {
|
192313
192783
|
|
192314
|
-
var wrappy =
|
192784
|
+
var wrappy = __nested_webpack_require_240162__(4586)
|
192315
192785
|
var reqs = Object.create(null)
|
192316
|
-
var once =
|
192786
|
+
var once = __nested_webpack_require_240162__(7197)
|
192317
192787
|
|
192318
192788
|
module.exports = wrappy(inflight)
|
192319
192789
|
|
@@ -192370,16 +192840,16 @@ function slice (args) {
|
|
192370
192840
|
/***/ }),
|
192371
192841
|
|
192372
192842
|
/***/ 6919:
|
192373
|
-
/***/ ((module, __unused_webpack_exports,
|
192843
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_241639__) => {
|
192374
192844
|
|
192375
192845
|
try {
|
192376
|
-
var util =
|
192846
|
+
var util = __nested_webpack_require_241639__(1669);
|
192377
192847
|
/* istanbul ignore next */
|
192378
192848
|
if (typeof util.inherits !== 'function') throw '';
|
192379
192849
|
module.exports = util.inherits;
|
192380
192850
|
} catch (e) {
|
192381
192851
|
/* istanbul ignore next */
|
192382
|
-
module.exports =
|
192852
|
+
module.exports = __nested_webpack_require_241639__(7526);
|
192383
192853
|
}
|
192384
192854
|
|
192385
192855
|
|
@@ -192420,12 +192890,12 @@ if (typeof Object.create === 'function') {
|
|
192420
192890
|
/***/ }),
|
192421
192891
|
|
192422
192892
|
/***/ 6130:
|
192423
|
-
/***/ ((module, __unused_webpack_exports,
|
192893
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_242786__) => {
|
192424
192894
|
|
192425
192895
|
"use strict";
|
192426
192896
|
|
192427
|
-
const from =
|
192428
|
-
const pIsPromise =
|
192897
|
+
const from = __nested_webpack_require_242786__(9238);
|
192898
|
+
const pIsPromise = __nested_webpack_require_242786__(2029);
|
192429
192899
|
|
192430
192900
|
const intoStream = input => {
|
192431
192901
|
if (Array.isArray(input)) {
|
@@ -192547,14 +193017,14 @@ module.exports = Array.isArray || function (arr) {
|
|
192547
193017
|
/***/ }),
|
192548
193018
|
|
192549
193019
|
/***/ 228:
|
192550
|
-
/***/ ((module, __unused_webpack_exports,
|
193020
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_245205__) => {
|
192551
193021
|
|
192552
|
-
var fs =
|
193022
|
+
var fs = __nested_webpack_require_245205__(5747)
|
192553
193023
|
var core
|
192554
193024
|
if (process.platform === 'win32' || global.TESTING_WINDOWS) {
|
192555
|
-
core =
|
193025
|
+
core = __nested_webpack_require_245205__(7214)
|
192556
193026
|
} else {
|
192557
|
-
core =
|
193027
|
+
core = __nested_webpack_require_245205__(5211)
|
192558
193028
|
}
|
192559
193029
|
|
192560
193030
|
module.exports = isexe
|
@@ -192611,12 +193081,12 @@ function sync (path, options) {
|
|
192611
193081
|
/***/ }),
|
192612
193082
|
|
192613
193083
|
/***/ 5211:
|
192614
|
-
/***/ ((module, __unused_webpack_exports,
|
193084
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_246510__) => {
|
192615
193085
|
|
192616
193086
|
module.exports = isexe
|
192617
193087
|
isexe.sync = sync
|
192618
193088
|
|
192619
|
-
var fs =
|
193089
|
+
var fs = __nested_webpack_require_246510__(5747)
|
192620
193090
|
|
192621
193091
|
function isexe (path, options, cb) {
|
192622
193092
|
fs.stat(path, function (er, stat) {
|
@@ -192659,12 +193129,12 @@ function checkMode (stat, options) {
|
|
192659
193129
|
/***/ }),
|
192660
193130
|
|
192661
193131
|
/***/ 7214:
|
192662
|
-
/***/ ((module, __unused_webpack_exports,
|
193132
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_247525__) => {
|
192663
193133
|
|
192664
193134
|
module.exports = isexe
|
192665
193135
|
isexe.sync = sync
|
192666
193136
|
|
192667
|
-
var fs =
|
193137
|
+
var fs = __nested_webpack_require_247525__(5747)
|
192668
193138
|
|
192669
193139
|
function checkPathExt (path, options) {
|
192670
193140
|
var pathext = options.pathExt !== undefined ?
|
@@ -192708,18 +193178,18 @@ function sync (path, options) {
|
|
192708
193178
|
/***/ }),
|
192709
193179
|
|
192710
193180
|
/***/ 9566:
|
192711
|
-
/***/ ((module, __unused_webpack_exports,
|
193181
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_248521__) => {
|
192712
193182
|
|
192713
193183
|
module.exports = minimatch
|
192714
193184
|
minimatch.Minimatch = Minimatch
|
192715
193185
|
|
192716
193186
|
var path = { sep: '/' }
|
192717
193187
|
try {
|
192718
|
-
path =
|
193188
|
+
path = __nested_webpack_require_248521__(5622)
|
192719
193189
|
} catch (er) {}
|
192720
193190
|
|
192721
193191
|
var GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {}
|
192722
|
-
var expand =
|
193192
|
+
var expand = __nested_webpack_require_248521__(3197)
|
192723
193193
|
|
192724
193194
|
var plTypes = {
|
192725
193195
|
'!': { open: '(?:(?!(?:', close: '))[^/]*?)'},
|
@@ -193638,12 +194108,12 @@ function regExpEscape (s) {
|
|
193638
194108
|
/***/ }),
|
193639
194109
|
|
193640
194110
|
/***/ 8179:
|
193641
|
-
/***/ ((module, __unused_webpack_exports,
|
194111
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_273971__) => {
|
193642
194112
|
|
193643
194113
|
module.exports = MultiStream
|
193644
194114
|
|
193645
|
-
var inherits =
|
193646
|
-
var stream =
|
194115
|
+
var inherits = __nested_webpack_require_273971__(6919)
|
194116
|
+
var stream = __nested_webpack_require_273971__(675)
|
193647
194117
|
|
193648
194118
|
inherits(MultiStream, stream.Readable)
|
193649
194119
|
|
@@ -193816,7 +194286,7 @@ module.exports = function(fn) {
|
|
193816
194286
|
/***/ }),
|
193817
194287
|
|
193818
194288
|
/***/ 2197:
|
193819
|
-
/***/ ((module, exports,
|
194289
|
+
/***/ ((module, exports, __nested_webpack_require_277827__) => {
|
193820
194290
|
|
193821
194291
|
"use strict";
|
193822
194292
|
|
@@ -193825,11 +194295,11 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
193825
194295
|
|
193826
194296
|
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
|
193827
194297
|
|
193828
|
-
var Stream = _interopDefault(
|
193829
|
-
var http = _interopDefault(
|
193830
|
-
var Url = _interopDefault(
|
193831
|
-
var https = _interopDefault(
|
193832
|
-
var zlib = _interopDefault(
|
194298
|
+
var Stream = _interopDefault(__nested_webpack_require_277827__(2413));
|
194299
|
+
var http = _interopDefault(__nested_webpack_require_277827__(5876));
|
194300
|
+
var Url = _interopDefault(__nested_webpack_require_277827__(8835));
|
194301
|
+
var https = _interopDefault(__nested_webpack_require_277827__(7211));
|
194302
|
+
var zlib = _interopDefault(__nested_webpack_require_277827__(8761));
|
193833
194303
|
|
193834
194304
|
// Based on https://github.com/tmpvar/jsdom/blob/aa85b2abf07766ff7bf5c1f6daafb3726f2f2db5/lib/jsdom/living/blob.js
|
193835
194305
|
|
@@ -193980,7 +194450,7 @@ FetchError.prototype.name = 'FetchError';
|
|
193980
194450
|
|
193981
194451
|
let convert;
|
193982
194452
|
try {
|
193983
|
-
convert =
|
194453
|
+
convert = __nested_webpack_require_277827__(9282)/* .convert */ .O;
|
193984
194454
|
} catch (e) {}
|
193985
194455
|
|
193986
194456
|
const INTERNALS = Symbol('Body internals');
|
@@ -195473,9 +195943,9 @@ exports.FetchError = FetchError;
|
|
195473
195943
|
/***/ }),
|
195474
195944
|
|
195475
195945
|
/***/ 7197:
|
195476
|
-
/***/ ((module, __unused_webpack_exports,
|
195946
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_319548__) => {
|
195477
195947
|
|
195478
|
-
var wrappy =
|
195948
|
+
var wrappy = __nested_webpack_require_319548__(4586)
|
195479
195949
|
module.exports = wrappy(once)
|
195480
195950
|
module.exports.strict = wrappy(onceStrict)
|
195481
195951
|
|
@@ -195626,7 +196096,7 @@ function nextTick(fn, arg1, arg2, arg3) {
|
|
195626
196096
|
/***/ }),
|
195627
196097
|
|
195628
196098
|
/***/ 8393:
|
195629
|
-
/***/ ((module, __unused_webpack_exports,
|
196099
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_322743__) => {
|
195630
196100
|
|
195631
196101
|
"use strict";
|
195632
196102
|
// Copyright Joyent, Inc. and other Node contributors.
|
@@ -195659,7 +196129,7 @@ function nextTick(fn, arg1, arg2, arg3) {
|
|
195659
196129
|
|
195660
196130
|
/*<replacement>*/
|
195661
196131
|
|
195662
|
-
var pna =
|
196132
|
+
var pna = __nested_webpack_require_322743__(7843);
|
195663
196133
|
/*</replacement>*/
|
195664
196134
|
|
195665
196135
|
/*<replacement>*/
|
@@ -195674,12 +196144,12 @@ var objectKeys = Object.keys || function (obj) {
|
|
195674
196144
|
module.exports = Duplex;
|
195675
196145
|
|
195676
196146
|
/*<replacement>*/
|
195677
|
-
var util = Object.create(
|
195678
|
-
util.inherits =
|
196147
|
+
var util = Object.create(__nested_webpack_require_322743__(3487));
|
196148
|
+
util.inherits = __nested_webpack_require_322743__(6919);
|
195679
196149
|
/*</replacement>*/
|
195680
196150
|
|
195681
|
-
var Readable =
|
195682
|
-
var Writable =
|
196151
|
+
var Readable = __nested_webpack_require_322743__(284);
|
196152
|
+
var Writable = __nested_webpack_require_322743__(6100);
|
195683
196153
|
|
195684
196154
|
util.inherits(Duplex, Readable);
|
195685
196155
|
|
@@ -195764,7 +196234,7 @@ Duplex.prototype._destroy = function (err, cb) {
|
|
195764
196234
|
/***/ }),
|
195765
196235
|
|
195766
196236
|
/***/ 5125:
|
195767
|
-
/***/ ((module, __unused_webpack_exports,
|
196237
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_326846__) => {
|
195768
196238
|
|
195769
196239
|
"use strict";
|
195770
196240
|
// Copyright Joyent, Inc. and other Node contributors.
|
@@ -195796,11 +196266,11 @@ Duplex.prototype._destroy = function (err, cb) {
|
|
195796
196266
|
|
195797
196267
|
module.exports = PassThrough;
|
195798
196268
|
|
195799
|
-
var Transform =
|
196269
|
+
var Transform = __nested_webpack_require_326846__(5469);
|
195800
196270
|
|
195801
196271
|
/*<replacement>*/
|
195802
|
-
var util = Object.create(
|
195803
|
-
util.inherits =
|
196272
|
+
var util = Object.create(__nested_webpack_require_326846__(3487));
|
196273
|
+
util.inherits = __nested_webpack_require_326846__(6919);
|
195804
196274
|
/*</replacement>*/
|
195805
196275
|
|
195806
196276
|
util.inherits(PassThrough, Transform);
|
@@ -195818,7 +196288,7 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
195818
196288
|
/***/ }),
|
195819
196289
|
|
195820
196290
|
/***/ 284:
|
195821
|
-
/***/ ((module, __unused_webpack_exports,
|
196291
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_328696__) => {
|
195822
196292
|
|
195823
196293
|
"use strict";
|
195824
196294
|
// Copyright Joyent, Inc. and other Node contributors.
|
@@ -195846,13 +196316,13 @@ PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
195846
196316
|
|
195847
196317
|
/*<replacement>*/
|
195848
196318
|
|
195849
|
-
var pna =
|
196319
|
+
var pna = __nested_webpack_require_328696__(7843);
|
195850
196320
|
/*</replacement>*/
|
195851
196321
|
|
195852
196322
|
module.exports = Readable;
|
195853
196323
|
|
195854
196324
|
/*<replacement>*/
|
195855
|
-
var isArray =
|
196325
|
+
var isArray = __nested_webpack_require_328696__(9842);
|
195856
196326
|
/*</replacement>*/
|
195857
196327
|
|
195858
196328
|
/*<replacement>*/
|
@@ -195862,7 +196332,7 @@ var Duplex;
|
|
195862
196332
|
Readable.ReadableState = ReadableState;
|
195863
196333
|
|
195864
196334
|
/*<replacement>*/
|
195865
|
-
var EE =
|
196335
|
+
var EE = __nested_webpack_require_328696__(8614).EventEmitter;
|
195866
196336
|
|
195867
196337
|
var EElistenerCount = function (emitter, type) {
|
195868
196338
|
return emitter.listeners(type).length;
|
@@ -195870,12 +196340,12 @@ var EElistenerCount = function (emitter, type) {
|
|
195870
196340
|
/*</replacement>*/
|
195871
196341
|
|
195872
196342
|
/*<replacement>*/
|
195873
|
-
var Stream =
|
196343
|
+
var Stream = __nested_webpack_require_328696__(5016);
|
195874
196344
|
/*</replacement>*/
|
195875
196345
|
|
195876
196346
|
/*<replacement>*/
|
195877
196347
|
|
195878
|
-
var Buffer =
|
196348
|
+
var Buffer = __nested_webpack_require_328696__(4810).Buffer;
|
195879
196349
|
var OurUint8Array = global.Uint8Array || function () {};
|
195880
196350
|
function _uint8ArrayToBuffer(chunk) {
|
195881
196351
|
return Buffer.from(chunk);
|
@@ -195887,12 +196357,12 @@ function _isUint8Array(obj) {
|
|
195887
196357
|
/*</replacement>*/
|
195888
196358
|
|
195889
196359
|
/*<replacement>*/
|
195890
|
-
var util = Object.create(
|
195891
|
-
util.inherits =
|
196360
|
+
var util = Object.create(__nested_webpack_require_328696__(3487));
|
196361
|
+
util.inherits = __nested_webpack_require_328696__(6919);
|
195892
196362
|
/*</replacement>*/
|
195893
196363
|
|
195894
196364
|
/*<replacement>*/
|
195895
|
-
var debugUtil =
|
196365
|
+
var debugUtil = __nested_webpack_require_328696__(1669);
|
195896
196366
|
var debug = void 0;
|
195897
196367
|
if (debugUtil && debugUtil.debuglog) {
|
195898
196368
|
debug = debugUtil.debuglog('stream');
|
@@ -195901,8 +196371,8 @@ if (debugUtil && debugUtil.debuglog) {
|
|
195901
196371
|
}
|
195902
196372
|
/*</replacement>*/
|
195903
196373
|
|
195904
|
-
var BufferList =
|
195905
|
-
var destroyImpl =
|
196374
|
+
var BufferList = __nested_webpack_require_328696__(8739);
|
196375
|
+
var destroyImpl = __nested_webpack_require_328696__(3090);
|
195906
196376
|
var StringDecoder;
|
195907
196377
|
|
195908
196378
|
util.inherits(Readable, Stream);
|
@@ -195922,7 +196392,7 @@ function prependListener(emitter, event, fn) {
|
|
195922
196392
|
}
|
195923
196393
|
|
195924
196394
|
function ReadableState(options, stream) {
|
195925
|
-
Duplex = Duplex ||
|
196395
|
+
Duplex = Duplex || __nested_webpack_require_328696__(8393);
|
195926
196396
|
|
195927
196397
|
options = options || {};
|
195928
196398
|
|
@@ -195992,14 +196462,14 @@ function ReadableState(options, stream) {
|
|
195992
196462
|
this.decoder = null;
|
195993
196463
|
this.encoding = null;
|
195994
196464
|
if (options.encoding) {
|
195995
|
-
if (!StringDecoder) StringDecoder =
|
196465
|
+
if (!StringDecoder) StringDecoder = __nested_webpack_require_328696__(642)/* .StringDecoder */ .s;
|
195996
196466
|
this.decoder = new StringDecoder(options.encoding);
|
195997
196467
|
this.encoding = options.encoding;
|
195998
196468
|
}
|
195999
196469
|
}
|
196000
196470
|
|
196001
196471
|
function Readable(options) {
|
196002
|
-
Duplex = Duplex ||
|
196472
|
+
Duplex = Duplex || __nested_webpack_require_328696__(8393);
|
196003
196473
|
|
196004
196474
|
if (!(this instanceof Readable)) return new Readable(options);
|
196005
196475
|
|
@@ -196148,7 +196618,7 @@ Readable.prototype.isPaused = function () {
|
|
196148
196618
|
|
196149
196619
|
// backwards compatibility.
|
196150
196620
|
Readable.prototype.setEncoding = function (enc) {
|
196151
|
-
if (!StringDecoder) StringDecoder =
|
196621
|
+
if (!StringDecoder) StringDecoder = __nested_webpack_require_328696__(642)/* .StringDecoder */ .s;
|
196152
196622
|
this._readableState.decoder = new StringDecoder(enc);
|
196153
196623
|
this._readableState.encoding = enc;
|
196154
196624
|
return this;
|
@@ -196844,7 +197314,7 @@ function indexOf(xs, x) {
|
|
196844
197314
|
/***/ }),
|
196845
197315
|
|
196846
197316
|
/***/ 5469:
|
196847
|
-
/***/ ((module, __unused_webpack_exports,
|
197317
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_360117__) => {
|
196848
197318
|
|
196849
197319
|
"use strict";
|
196850
197320
|
// Copyright Joyent, Inc. and other Node contributors.
|
@@ -196914,11 +197384,11 @@ function indexOf(xs, x) {
|
|
196914
197384
|
|
196915
197385
|
module.exports = Transform;
|
196916
197386
|
|
196917
|
-
var Duplex =
|
197387
|
+
var Duplex = __nested_webpack_require_360117__(8393);
|
196918
197388
|
|
196919
197389
|
/*<replacement>*/
|
196920
|
-
var util = Object.create(
|
196921
|
-
util.inherits =
|
197390
|
+
var util = Object.create(__nested_webpack_require_360117__(3487));
|
197391
|
+
util.inherits = __nested_webpack_require_360117__(6919);
|
196922
197392
|
/*</replacement>*/
|
196923
197393
|
|
196924
197394
|
util.inherits(Transform, Duplex);
|
@@ -197065,7 +197535,7 @@ function done(stream, er, data) {
|
|
197065
197535
|
/***/ }),
|
197066
197536
|
|
197067
197537
|
/***/ 6100:
|
197068
|
-
/***/ ((module, __unused_webpack_exports,
|
197538
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_367960__) => {
|
197069
197539
|
|
197070
197540
|
"use strict";
|
197071
197541
|
// Copyright Joyent, Inc. and other Node contributors.
|
@@ -197097,7 +197567,7 @@ function done(stream, er, data) {
|
|
197097
197567
|
|
197098
197568
|
/*<replacement>*/
|
197099
197569
|
|
197100
|
-
var pna =
|
197570
|
+
var pna = __nested_webpack_require_367960__(7843);
|
197101
197571
|
/*</replacement>*/
|
197102
197572
|
|
197103
197573
|
module.exports = Writable;
|
@@ -197134,23 +197604,23 @@ var Duplex;
|
|
197134
197604
|
Writable.WritableState = WritableState;
|
197135
197605
|
|
197136
197606
|
/*<replacement>*/
|
197137
|
-
var util = Object.create(
|
197138
|
-
util.inherits =
|
197607
|
+
var util = Object.create(__nested_webpack_require_367960__(3487));
|
197608
|
+
util.inherits = __nested_webpack_require_367960__(6919);
|
197139
197609
|
/*</replacement>*/
|
197140
197610
|
|
197141
197611
|
/*<replacement>*/
|
197142
197612
|
var internalUtil = {
|
197143
|
-
deprecate:
|
197613
|
+
deprecate: __nested_webpack_require_367960__(9209)
|
197144
197614
|
};
|
197145
197615
|
/*</replacement>*/
|
197146
197616
|
|
197147
197617
|
/*<replacement>*/
|
197148
|
-
var Stream =
|
197618
|
+
var Stream = __nested_webpack_require_367960__(5016);
|
197149
197619
|
/*</replacement>*/
|
197150
197620
|
|
197151
197621
|
/*<replacement>*/
|
197152
197622
|
|
197153
|
-
var Buffer =
|
197623
|
+
var Buffer = __nested_webpack_require_367960__(4810).Buffer;
|
197154
197624
|
var OurUint8Array = global.Uint8Array || function () {};
|
197155
197625
|
function _uint8ArrayToBuffer(chunk) {
|
197156
197626
|
return Buffer.from(chunk);
|
@@ -197161,14 +197631,14 @@ function _isUint8Array(obj) {
|
|
197161
197631
|
|
197162
197632
|
/*</replacement>*/
|
197163
197633
|
|
197164
|
-
var destroyImpl =
|
197634
|
+
var destroyImpl = __nested_webpack_require_367960__(3090);
|
197165
197635
|
|
197166
197636
|
util.inherits(Writable, Stream);
|
197167
197637
|
|
197168
197638
|
function nop() {}
|
197169
197639
|
|
197170
197640
|
function WritableState(options, stream) {
|
197171
|
-
Duplex = Duplex ||
|
197641
|
+
Duplex = Duplex || __nested_webpack_require_367960__(8393);
|
197172
197642
|
|
197173
197643
|
options = options || {};
|
197174
197644
|
|
@@ -197318,7 +197788,7 @@ if (typeof Symbol === 'function' && Symbol.hasInstance && typeof Function.protot
|
|
197318
197788
|
}
|
197319
197789
|
|
197320
197790
|
function Writable(options) {
|
197321
|
-
Duplex = Duplex ||
|
197791
|
+
Duplex = Duplex || __nested_webpack_require_367960__(8393);
|
197322
197792
|
|
197323
197793
|
// Writable ctor is applied to Duplexes, too.
|
197324
197794
|
// `realHasInstance` is necessary because using plain `instanceof`
|
@@ -197759,15 +198229,15 @@ Writable.prototype._destroy = function (err, cb) {
|
|
197759
198229
|
/***/ }),
|
197760
198230
|
|
197761
198231
|
/***/ 8739:
|
197762
|
-
/***/ ((module, __unused_webpack_exports,
|
198232
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_388350__) => {
|
197763
198233
|
|
197764
198234
|
"use strict";
|
197765
198235
|
|
197766
198236
|
|
197767
198237
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
197768
198238
|
|
197769
|
-
var Buffer =
|
197770
|
-
var util =
|
198239
|
+
var Buffer = __nested_webpack_require_388350__(4810).Buffer;
|
198240
|
+
var util = __nested_webpack_require_388350__(1669);
|
197771
198241
|
|
197772
198242
|
function copyBuffer(src, target, offset) {
|
197773
198243
|
src.copy(target, offset);
|
@@ -197845,14 +198315,14 @@ if (util && util.inspect && util.inspect.custom) {
|
|
197845
198315
|
/***/ }),
|
197846
198316
|
|
197847
198317
|
/***/ 3090:
|
197848
|
-
/***/ ((module, __unused_webpack_exports,
|
198318
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_390517__) => {
|
197849
198319
|
|
197850
198320
|
"use strict";
|
197851
198321
|
|
197852
198322
|
|
197853
198323
|
/*<replacement>*/
|
197854
198324
|
|
197855
|
-
var pna =
|
198325
|
+
var pna = __nested_webpack_require_390517__(7843);
|
197856
198326
|
/*</replacement>*/
|
197857
198327
|
|
197858
198328
|
// undocumented cb() API, needed for core, not for public API
|
@@ -197926,18 +198396,18 @@ module.exports = {
|
|
197926
198396
|
/***/ }),
|
197927
198397
|
|
197928
198398
|
/***/ 5016:
|
197929
|
-
/***/ ((module, __unused_webpack_exports,
|
198399
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_392455__) => {
|
197930
198400
|
|
197931
|
-
module.exports =
|
198401
|
+
module.exports = __nested_webpack_require_392455__(2413);
|
197932
198402
|
|
197933
198403
|
|
197934
198404
|
/***/ }),
|
197935
198405
|
|
197936
198406
|
/***/ 4810:
|
197937
|
-
/***/ ((module, exports,
|
198407
|
+
/***/ ((module, exports, __nested_webpack_require_392576__) => {
|
197938
198408
|
|
197939
198409
|
/* eslint-disable node/no-deprecated-api */
|
197940
|
-
var buffer =
|
198410
|
+
var buffer = __nested_webpack_require_392576__(4293)
|
197941
198411
|
var Buffer = buffer.Buffer
|
197942
198412
|
|
197943
198413
|
// alternative to using Object.keys for old browsers
|
@@ -198003,9 +198473,9 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
198003
198473
|
/***/ }),
|
198004
198474
|
|
198005
198475
|
/***/ 675:
|
198006
|
-
/***/ ((module, exports,
|
198476
|
+
/***/ ((module, exports, __nested_webpack_require_394189__) => {
|
198007
198477
|
|
198008
|
-
var Stream =
|
198478
|
+
var Stream = __nested_webpack_require_394189__(2413);
|
198009
198479
|
if (process.env.READABLE_STREAM === 'disable' && Stream) {
|
198010
198480
|
module.exports = Stream;
|
198011
198481
|
exports = module.exports = Stream.Readable;
|
@@ -198016,27 +198486,27 @@ if (process.env.READABLE_STREAM === 'disable' && Stream) {
|
|
198016
198486
|
exports.PassThrough = Stream.PassThrough;
|
198017
198487
|
exports.Stream = Stream;
|
198018
198488
|
} else {
|
198019
|
-
exports = module.exports =
|
198489
|
+
exports = module.exports = __nested_webpack_require_394189__(284);
|
198020
198490
|
exports.Stream = Stream || exports;
|
198021
198491
|
exports.Readable = exports;
|
198022
|
-
exports.Writable =
|
198023
|
-
exports.Duplex =
|
198024
|
-
exports.Transform =
|
198025
|
-
exports.PassThrough =
|
198492
|
+
exports.Writable = __nested_webpack_require_394189__(6100);
|
198493
|
+
exports.Duplex = __nested_webpack_require_394189__(8393);
|
198494
|
+
exports.Transform = __nested_webpack_require_394189__(5469);
|
198495
|
+
exports.PassThrough = __nested_webpack_require_394189__(5125);
|
198026
198496
|
}
|
198027
198497
|
|
198028
198498
|
|
198029
198499
|
/***/ }),
|
198030
198500
|
|
198031
198501
|
/***/ 6393:
|
198032
|
-
/***/ ((module, __unused_webpack_exports,
|
198502
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_395004__) => {
|
198033
198503
|
|
198034
198504
|
"use strict";
|
198035
198505
|
/* eslint-disable node/no-deprecated-api */
|
198036
198506
|
|
198037
198507
|
|
198038
198508
|
|
198039
|
-
var buffer =
|
198509
|
+
var buffer = __nested_webpack_require_395004__(4293)
|
198040
198510
|
var Buffer = buffer.Buffer
|
198041
198511
|
|
198042
198512
|
var safer = {}
|
@@ -198114,11 +198584,11 @@ module.exports = safer
|
|
198114
198584
|
/***/ }),
|
198115
198585
|
|
198116
198586
|
/***/ 4970:
|
198117
|
-
/***/ ((module, __unused_webpack_exports,
|
198587
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_397218__) => {
|
198118
198588
|
|
198119
198589
|
"use strict";
|
198120
198590
|
|
198121
|
-
var shebangRegex =
|
198591
|
+
var shebangRegex = __nested_webpack_require_397218__(1504);
|
198122
198592
|
|
198123
198593
|
module.exports = function (str) {
|
198124
198594
|
var match = str.match(shebangRegex);
|
@@ -198151,7 +198621,7 @@ module.exports = /^#!.*/;
|
|
198151
198621
|
/***/ }),
|
198152
198622
|
|
198153
198623
|
/***/ 642:
|
198154
|
-
/***/ ((__unused_webpack_module, exports,
|
198624
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_397747__) => {
|
198155
198625
|
|
198156
198626
|
"use strict";
|
198157
198627
|
// Copyright Joyent, Inc. and other Node contributors.
|
@@ -198179,7 +198649,7 @@ module.exports = /^#!.*/;
|
|
198179
198649
|
|
198180
198650
|
/*<replacement>*/
|
198181
198651
|
|
198182
|
-
var Buffer =
|
198652
|
+
var Buffer = __nested_webpack_require_397747__(265).Buffer;
|
198183
198653
|
/*</replacement>*/
|
198184
198654
|
|
198185
198655
|
var isEncoding = Buffer.isEncoding || function (encoding) {
|
@@ -198454,10 +198924,10 @@ function simpleEnd(buf) {
|
|
198454
198924
|
/***/ }),
|
198455
198925
|
|
198456
198926
|
/***/ 265:
|
198457
|
-
/***/ ((module, exports,
|
198927
|
+
/***/ ((module, exports, __nested_webpack_require_407279__) => {
|
198458
198928
|
|
198459
198929
|
/* eslint-disable node/no-deprecated-api */
|
198460
|
-
var buffer =
|
198930
|
+
var buffer = __nested_webpack_require_407279__(4293)
|
198461
198931
|
var Buffer = buffer.Buffer
|
198462
198932
|
|
198463
198933
|
// alternative to using Object.keys for old browsers
|
@@ -198523,20 +198993,20 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
198523
198993
|
/***/ }),
|
198524
198994
|
|
198525
198995
|
/***/ 9209:
|
198526
|
-
/***/ ((module, __unused_webpack_exports,
|
198996
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_408910__) => {
|
198527
198997
|
|
198528
198998
|
|
198529
198999
|
/**
|
198530
199000
|
* For Node.js, simply re-export the core `util.deprecate` function.
|
198531
199001
|
*/
|
198532
199002
|
|
198533
|
-
module.exports =
|
199003
|
+
module.exports = __nested_webpack_require_408910__(1669).deprecate;
|
198534
199004
|
|
198535
199005
|
|
198536
199006
|
/***/ }),
|
198537
199007
|
|
198538
199008
|
/***/ 8201:
|
198539
|
-
/***/ ((module, __unused_webpack_exports,
|
199009
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_409137__) => {
|
198540
199010
|
|
198541
199011
|
module.exports = which
|
198542
199012
|
which.sync = whichSync
|
@@ -198545,9 +199015,9 @@ var isWindows = process.platform === 'win32' ||
|
|
198545
199015
|
process.env.OSTYPE === 'cygwin' ||
|
198546
199016
|
process.env.OSTYPE === 'msys'
|
198547
199017
|
|
198548
|
-
var path =
|
199018
|
+
var path = __nested_webpack_require_409137__(5622)
|
198549
199019
|
var COLON = isWindows ? ';' : ':'
|
198550
|
-
var isexe =
|
199020
|
+
var isexe = __nested_webpack_require_409137__(228)
|
198551
199021
|
|
198552
199022
|
function getNotFoundError (cmd) {
|
198553
199023
|
var er = new Error('not found: ' + cmd)
|
@@ -198718,15 +199188,15 @@ function wrappy (fn, cb) {
|
|
198718
199188
|
/***/ }),
|
198719
199189
|
|
198720
199190
|
/***/ 1223:
|
198721
|
-
/***/ ((__unused_webpack_module, exports,
|
199191
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_413385__) => {
|
198722
199192
|
|
198723
|
-
var fs =
|
198724
|
-
var Transform =
|
198725
|
-
var PassThrough =
|
198726
|
-
var zlib =
|
198727
|
-
var util =
|
198728
|
-
var EventEmitter =
|
198729
|
-
var crc32 =
|
199193
|
+
var fs = __nested_webpack_require_413385__(5747);
|
199194
|
+
var Transform = __nested_webpack_require_413385__(2413).Transform;
|
199195
|
+
var PassThrough = __nested_webpack_require_413385__(2413).PassThrough;
|
199196
|
+
var zlib = __nested_webpack_require_413385__(8761);
|
199197
|
+
var util = __nested_webpack_require_413385__(1669);
|
199198
|
+
var EventEmitter = __nested_webpack_require_413385__(8614).EventEmitter;
|
199199
|
+
var crc32 = __nested_webpack_require_413385__(360);
|
198730
199200
|
|
198731
199201
|
exports.ZipFile = ZipFile;
|
198732
199202
|
exports.dateToDosDateTime = dateToDosDateTime;
|
@@ -199366,14 +199836,14 @@ Crc32Watcher.prototype._transform = function(chunk, encoding, cb) {
|
|
199366
199836
|
/***/ }),
|
199367
199837
|
|
199368
199838
|
/***/ 7618:
|
199369
|
-
/***/ ((module, __unused_webpack_exports,
|
199839
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_439445__) => {
|
199370
199840
|
|
199371
199841
|
"use strict";
|
199372
199842
|
|
199373
199843
|
|
199374
|
-
const cp =
|
199375
|
-
const parse =
|
199376
|
-
const enoent =
|
199844
|
+
const cp = __nested_webpack_require_439445__(3129);
|
199845
|
+
const parse = __nested_webpack_require_439445__(5025);
|
199846
|
+
const enoent = __nested_webpack_require_439445__(2773);
|
199377
199847
|
|
199378
199848
|
function spawn(command, args, options) {
|
199379
199849
|
// Parse the arguments
|
@@ -199480,17 +199950,17 @@ module.exports = {
|
|
199480
199950
|
/***/ }),
|
199481
199951
|
|
199482
199952
|
/***/ 5025:
|
199483
|
-
/***/ ((module, __unused_webpack_exports,
|
199953
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_442266__) => {
|
199484
199954
|
|
199485
199955
|
"use strict";
|
199486
199956
|
|
199487
199957
|
|
199488
|
-
const path =
|
199489
|
-
const niceTry =
|
199490
|
-
const resolveCommand =
|
199491
|
-
const escape =
|
199492
|
-
const readShebang =
|
199493
|
-
const semver =
|
199958
|
+
const path = __nested_webpack_require_442266__(5622);
|
199959
|
+
const niceTry = __nested_webpack_require_442266__(7369);
|
199960
|
+
const resolveCommand = __nested_webpack_require_442266__(7231);
|
199961
|
+
const escape = __nested_webpack_require_442266__(1880);
|
199962
|
+
const readShebang = __nested_webpack_require_442266__(2655);
|
199963
|
+
const semver = __nested_webpack_require_442266__(8515);
|
199494
199964
|
|
199495
199965
|
const isWin = process.platform === 'win32';
|
199496
199966
|
const isExecutableRegExp = /\.(?:com|exe)$/i;
|
@@ -199666,13 +200136,13 @@ module.exports.argument = escapeArgument;
|
|
199666
200136
|
/***/ }),
|
199667
200137
|
|
199668
200138
|
/***/ 2655:
|
199669
|
-
/***/ ((module, __unused_webpack_exports,
|
200139
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_448009__) => {
|
199670
200140
|
|
199671
200141
|
"use strict";
|
199672
200142
|
|
199673
200143
|
|
199674
|
-
const fs =
|
199675
|
-
const shebangCommand =
|
200144
|
+
const fs = __nested_webpack_require_448009__(5747);
|
200145
|
+
const shebangCommand = __nested_webpack_require_448009__(4970);
|
199676
200146
|
|
199677
200147
|
function readShebang(command) {
|
199678
200148
|
// Read the first 150 bytes from the file
|
@@ -199706,14 +200176,14 @@ module.exports = readShebang;
|
|
199706
200176
|
/***/ }),
|
199707
200177
|
|
199708
200178
|
/***/ 7231:
|
199709
|
-
/***/ ((module, __unused_webpack_exports,
|
200179
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_448855__) => {
|
199710
200180
|
|
199711
200181
|
"use strict";
|
199712
200182
|
|
199713
200183
|
|
199714
|
-
const path =
|
199715
|
-
const which =
|
199716
|
-
const pathKey =
|
200184
|
+
const path = __nested_webpack_require_448855__(5622);
|
200185
|
+
const which = __nested_webpack_require_448855__(8201);
|
200186
|
+
const pathKey = __nested_webpack_require_448855__(4725)();
|
199717
200187
|
|
199718
200188
|
function resolveCommandAttempt(parsed, withoutPathExt) {
|
199719
200189
|
const cwd = process.cwd();
|
@@ -201251,9 +201721,9 @@ function coerce (version) {
|
|
201251
201721
|
/***/ }),
|
201252
201722
|
|
201253
201723
|
/***/ 687:
|
201254
|
-
/***/ ((module, __unused_webpack_exports,
|
201724
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_489160__) => {
|
201255
201725
|
|
201256
|
-
var once =
|
201726
|
+
var once = __nested_webpack_require_489160__(7197);
|
201257
201727
|
|
201258
201728
|
var noop = function() {};
|
201259
201729
|
|
@@ -201345,16 +201815,16 @@ module.exports = eos;
|
|
201345
201815
|
/***/ }),
|
201346
201816
|
|
201347
201817
|
/***/ 4994:
|
201348
|
-
/***/ ((module, __unused_webpack_exports,
|
201818
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_491757__) => {
|
201349
201819
|
|
201350
201820
|
"use strict";
|
201351
201821
|
|
201352
201822
|
|
201353
|
-
const fs =
|
201354
|
-
const path =
|
201355
|
-
const mkdirsSync =
|
201356
|
-
const utimesMillisSync =
|
201357
|
-
const stat =
|
201823
|
+
const fs = __nested_webpack_require_491757__(552)
|
201824
|
+
const path = __nested_webpack_require_491757__(5622)
|
201825
|
+
const mkdirsSync = __nested_webpack_require_491757__(9181).mkdirsSync
|
201826
|
+
const utimesMillisSync = __nested_webpack_require_491757__(8605).utimesMillisSync
|
201827
|
+
const stat = __nested_webpack_require_491757__(9783)
|
201358
201828
|
|
201359
201829
|
function copySync (src, dest, opts) {
|
201360
201830
|
if (typeof opts === 'function') {
|
@@ -201519,30 +201989,30 @@ module.exports = copySync
|
|
201519
201989
|
/***/ }),
|
201520
201990
|
|
201521
201991
|
/***/ 9567:
|
201522
|
-
/***/ ((module, __unused_webpack_exports,
|
201992
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_497591__) => {
|
201523
201993
|
|
201524
201994
|
"use strict";
|
201525
201995
|
|
201526
201996
|
|
201527
201997
|
module.exports = {
|
201528
|
-
copySync:
|
201998
|
+
copySync: __nested_webpack_require_497591__(4994)
|
201529
201999
|
}
|
201530
202000
|
|
201531
202001
|
|
201532
202002
|
/***/ }),
|
201533
202003
|
|
201534
202004
|
/***/ 4487:
|
201535
|
-
/***/ ((module, __unused_webpack_exports,
|
202005
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_497760__) => {
|
201536
202006
|
|
201537
202007
|
"use strict";
|
201538
202008
|
|
201539
202009
|
|
201540
|
-
const fs =
|
201541
|
-
const path =
|
201542
|
-
const mkdirs =
|
201543
|
-
const pathExists =
|
201544
|
-
const utimesMillis =
|
201545
|
-
const stat =
|
202010
|
+
const fs = __nested_webpack_require_497760__(552)
|
202011
|
+
const path = __nested_webpack_require_497760__(5622)
|
202012
|
+
const mkdirs = __nested_webpack_require_497760__(9181).mkdirs
|
202013
|
+
const pathExists = __nested_webpack_require_497760__(5516).pathExists
|
202014
|
+
const utimesMillis = __nested_webpack_require_497760__(8605).utimesMillis
|
202015
|
+
const stat = __nested_webpack_require_497760__(9783)
|
201546
202016
|
|
201547
202017
|
function copy (src, dest, opts, cb) {
|
201548
202018
|
if (typeof opts === 'function' && !cb) {
|
@@ -201772,30 +202242,30 @@ module.exports = copy
|
|
201772
202242
|
/***/ }),
|
201773
202243
|
|
201774
202244
|
/***/ 8852:
|
201775
|
-
/***/ ((module, __unused_webpack_exports,
|
202245
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_505574__) => {
|
201776
202246
|
|
201777
202247
|
"use strict";
|
201778
202248
|
|
201779
202249
|
|
201780
|
-
const u =
|
202250
|
+
const u = __nested_webpack_require_505574__(7500).fromCallback
|
201781
202251
|
module.exports = {
|
201782
|
-
copy: u(
|
202252
|
+
copy: u(__nested_webpack_require_505574__(4487))
|
201783
202253
|
}
|
201784
202254
|
|
201785
202255
|
|
201786
202256
|
/***/ }),
|
201787
202257
|
|
201788
202258
|
/***/ 2677:
|
201789
|
-
/***/ ((module, __unused_webpack_exports,
|
202259
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_505791__) => {
|
201790
202260
|
|
201791
202261
|
"use strict";
|
201792
202262
|
|
201793
202263
|
|
201794
|
-
const u =
|
201795
|
-
const fs =
|
201796
|
-
const path =
|
201797
|
-
const mkdir =
|
201798
|
-
const remove =
|
202264
|
+
const u = __nested_webpack_require_505791__(7500).fromPromise
|
202265
|
+
const fs = __nested_webpack_require_505791__(893)
|
202266
|
+
const path = __nested_webpack_require_505791__(5622)
|
202267
|
+
const mkdir = __nested_webpack_require_505791__(9181)
|
202268
|
+
const remove = __nested_webpack_require_505791__(4879)
|
201799
202269
|
|
201800
202270
|
const emptyDir = u(async function emptyDir (dir) {
|
201801
202271
|
let items
|
@@ -201833,15 +202303,15 @@ module.exports = {
|
|
201833
202303
|
/***/ }),
|
201834
202304
|
|
201835
202305
|
/***/ 2446:
|
201836
|
-
/***/ ((module, __unused_webpack_exports,
|
202306
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_506664__) => {
|
201837
202307
|
|
201838
202308
|
"use strict";
|
201839
202309
|
|
201840
202310
|
|
201841
|
-
const u =
|
201842
|
-
const path =
|
201843
|
-
const fs =
|
201844
|
-
const mkdir =
|
202311
|
+
const u = __nested_webpack_require_506664__(7500).fromCallback
|
202312
|
+
const path = __nested_webpack_require_506664__(5622)
|
202313
|
+
const fs = __nested_webpack_require_506664__(552)
|
202314
|
+
const mkdir = __nested_webpack_require_506664__(9181)
|
201845
202315
|
|
201846
202316
|
function createFile (file, callback) {
|
201847
202317
|
function makeFile () {
|
@@ -201910,14 +202380,14 @@ module.exports = {
|
|
201910
202380
|
/***/ }),
|
201911
202381
|
|
201912
202382
|
/***/ 6004:
|
201913
|
-
/***/ ((module, __unused_webpack_exports,
|
202383
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_508488__) => {
|
201914
202384
|
|
201915
202385
|
"use strict";
|
201916
202386
|
|
201917
202387
|
|
201918
|
-
const file =
|
201919
|
-
const link =
|
201920
|
-
const symlink =
|
202388
|
+
const file = __nested_webpack_require_508488__(2446)
|
202389
|
+
const link = __nested_webpack_require_508488__(9140)
|
202390
|
+
const symlink = __nested_webpack_require_508488__(3674)
|
201921
202391
|
|
201922
202392
|
module.exports = {
|
201923
202393
|
// file
|
@@ -201941,17 +202411,17 @@ module.exports = {
|
|
201941
202411
|
/***/ }),
|
201942
202412
|
|
201943
202413
|
/***/ 9140:
|
201944
|
-
/***/ ((module, __unused_webpack_exports,
|
202414
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_509228__) => {
|
201945
202415
|
|
201946
202416
|
"use strict";
|
201947
202417
|
|
201948
202418
|
|
201949
|
-
const u =
|
201950
|
-
const path =
|
201951
|
-
const fs =
|
201952
|
-
const mkdir =
|
201953
|
-
const pathExists =
|
201954
|
-
const { areIdentical } =
|
202419
|
+
const u = __nested_webpack_require_509228__(7500).fromCallback
|
202420
|
+
const path = __nested_webpack_require_509228__(5622)
|
202421
|
+
const fs = __nested_webpack_require_509228__(552)
|
202422
|
+
const mkdir = __nested_webpack_require_509228__(9181)
|
202423
|
+
const pathExists = __nested_webpack_require_509228__(5516).pathExists
|
202424
|
+
const { areIdentical } = __nested_webpack_require_509228__(9783)
|
201955
202425
|
|
201956
202426
|
function createLink (srcpath, dstpath, callback) {
|
201957
202427
|
function makeLink (srcpath, dstpath) {
|
@@ -202013,14 +202483,14 @@ module.exports = {
|
|
202013
202483
|
/***/ }),
|
202014
202484
|
|
202015
202485
|
/***/ 6522:
|
202016
|
-
/***/ ((module, __unused_webpack_exports,
|
202486
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_510997__) => {
|
202017
202487
|
|
202018
202488
|
"use strict";
|
202019
202489
|
|
202020
202490
|
|
202021
|
-
const path =
|
202022
|
-
const fs =
|
202023
|
-
const pathExists =
|
202491
|
+
const path = __nested_webpack_require_510997__(5622)
|
202492
|
+
const fs = __nested_webpack_require_510997__(552)
|
202493
|
+
const pathExists = __nested_webpack_require_510997__(5516).pathExists
|
202024
202494
|
|
202025
202495
|
/**
|
202026
202496
|
* Function that returns two types of paths, one relative to symlink, and one
|
@@ -202120,12 +202590,12 @@ module.exports = {
|
|
202120
202590
|
/***/ }),
|
202121
202591
|
|
202122
202592
|
/***/ 9634:
|
202123
|
-
/***/ ((module, __unused_webpack_exports,
|
202593
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_514479__) => {
|
202124
202594
|
|
202125
202595
|
"use strict";
|
202126
202596
|
|
202127
202597
|
|
202128
|
-
const fs =
|
202598
|
+
const fs = __nested_webpack_require_514479__(552)
|
202129
202599
|
|
202130
202600
|
function symlinkType (srcpath, type, callback) {
|
202131
202601
|
callback = (typeof type === 'function') ? type : callback
|
@@ -202159,29 +202629,29 @@ module.exports = {
|
|
202159
202629
|
/***/ }),
|
202160
202630
|
|
202161
202631
|
/***/ 3674:
|
202162
|
-
/***/ ((module, __unused_webpack_exports,
|
202632
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_515271__) => {
|
202163
202633
|
|
202164
202634
|
"use strict";
|
202165
202635
|
|
202166
202636
|
|
202167
|
-
const u =
|
202168
|
-
const path =
|
202169
|
-
const fs =
|
202170
|
-
const _mkdirs =
|
202637
|
+
const u = __nested_webpack_require_515271__(7500).fromCallback
|
202638
|
+
const path = __nested_webpack_require_515271__(5622)
|
202639
|
+
const fs = __nested_webpack_require_515271__(893)
|
202640
|
+
const _mkdirs = __nested_webpack_require_515271__(9181)
|
202171
202641
|
const mkdirs = _mkdirs.mkdirs
|
202172
202642
|
const mkdirsSync = _mkdirs.mkdirsSync
|
202173
202643
|
|
202174
|
-
const _symlinkPaths =
|
202644
|
+
const _symlinkPaths = __nested_webpack_require_515271__(6522)
|
202175
202645
|
const symlinkPaths = _symlinkPaths.symlinkPaths
|
202176
202646
|
const symlinkPathsSync = _symlinkPaths.symlinkPathsSync
|
202177
202647
|
|
202178
|
-
const _symlinkType =
|
202648
|
+
const _symlinkType = __nested_webpack_require_515271__(9634)
|
202179
202649
|
const symlinkType = _symlinkType.symlinkType
|
202180
202650
|
const symlinkTypeSync = _symlinkType.symlinkTypeSync
|
202181
202651
|
|
202182
|
-
const pathExists =
|
202652
|
+
const pathExists = __nested_webpack_require_515271__(5516).pathExists
|
202183
202653
|
|
202184
|
-
const { areIdentical } =
|
202654
|
+
const { areIdentical } = __nested_webpack_require_515271__(9783)
|
202185
202655
|
|
202186
202656
|
function createSymlink (srcpath, dstpath, type, callback) {
|
202187
202657
|
callback = (typeof type === 'function') ? type : callback
|
@@ -202249,14 +202719,14 @@ module.exports = {
|
|
202249
202719
|
/***/ }),
|
202250
202720
|
|
202251
202721
|
/***/ 893:
|
202252
|
-
/***/ ((__unused_webpack_module, exports,
|
202722
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_517914__) => {
|
202253
202723
|
|
202254
202724
|
"use strict";
|
202255
202725
|
|
202256
202726
|
// This is adapted from https://github.com/normalize/mz
|
202257
202727
|
// Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors
|
202258
|
-
const u =
|
202259
|
-
const fs =
|
202728
|
+
const u = __nested_webpack_require_517914__(7500).fromCallback
|
202729
|
+
const fs = __nested_webpack_require_517914__(552)
|
202260
202730
|
|
202261
202731
|
const api = [
|
202262
202732
|
'access',
|
@@ -202376,42 +202846,42 @@ if (typeof fs.writev === 'function') {
|
|
202376
202846
|
/***/ }),
|
202377
202847
|
|
202378
202848
|
/***/ 5392:
|
202379
|
-
/***/ ((module, __unused_webpack_exports,
|
202849
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_521120__) => {
|
202380
202850
|
|
202381
202851
|
"use strict";
|
202382
202852
|
|
202383
202853
|
|
202384
202854
|
module.exports = {
|
202385
202855
|
// Export promiseified graceful-fs:
|
202386
|
-
...
|
202856
|
+
...__nested_webpack_require_521120__(893),
|
202387
202857
|
// Export extra methods:
|
202388
|
-
...
|
202389
|
-
...
|
202390
|
-
...
|
202391
|
-
...
|
202392
|
-
...
|
202393
|
-
...
|
202394
|
-
...
|
202395
|
-
...
|
202396
|
-
...
|
202397
|
-
...
|
202398
|
-
...
|
202858
|
+
...__nested_webpack_require_521120__(9567),
|
202859
|
+
...__nested_webpack_require_521120__(8852),
|
202860
|
+
...__nested_webpack_require_521120__(2677),
|
202861
|
+
...__nested_webpack_require_521120__(6004),
|
202862
|
+
...__nested_webpack_require_521120__(3960),
|
202863
|
+
...__nested_webpack_require_521120__(9181),
|
202864
|
+
...__nested_webpack_require_521120__(4168),
|
202865
|
+
...__nested_webpack_require_521120__(7819),
|
202866
|
+
...__nested_webpack_require_521120__(3849),
|
202867
|
+
...__nested_webpack_require_521120__(5516),
|
202868
|
+
...__nested_webpack_require_521120__(4879)
|
202399
202869
|
}
|
202400
202870
|
|
202401
202871
|
|
202402
202872
|
/***/ }),
|
202403
202873
|
|
202404
202874
|
/***/ 3960:
|
202405
|
-
/***/ ((module, __unused_webpack_exports,
|
202875
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_521698__) => {
|
202406
202876
|
|
202407
202877
|
"use strict";
|
202408
202878
|
|
202409
202879
|
|
202410
|
-
const u =
|
202411
|
-
const jsonFile =
|
202880
|
+
const u = __nested_webpack_require_521698__(7500).fromPromise
|
202881
|
+
const jsonFile = __nested_webpack_require_521698__(4003)
|
202412
202882
|
|
202413
|
-
jsonFile.outputJson = u(
|
202414
|
-
jsonFile.outputJsonSync =
|
202883
|
+
jsonFile.outputJson = u(__nested_webpack_require_521698__(7583))
|
202884
|
+
jsonFile.outputJsonSync = __nested_webpack_require_521698__(3719)
|
202415
202885
|
// aliases
|
202416
202886
|
jsonFile.outputJSON = jsonFile.outputJson
|
202417
202887
|
jsonFile.outputJSONSync = jsonFile.outputJsonSync
|
@@ -202426,12 +202896,12 @@ module.exports = jsonFile
|
|
202426
202896
|
/***/ }),
|
202427
202897
|
|
202428
202898
|
/***/ 4003:
|
202429
|
-
/***/ ((module, __unused_webpack_exports,
|
202899
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_522305__) => {
|
202430
202900
|
|
202431
202901
|
"use strict";
|
202432
202902
|
|
202433
202903
|
|
202434
|
-
const jsonFile =
|
202904
|
+
const jsonFile = __nested_webpack_require_522305__(4862)
|
202435
202905
|
|
202436
202906
|
module.exports = {
|
202437
202907
|
// jsonfile exports
|
@@ -202445,13 +202915,13 @@ module.exports = {
|
|
202445
202915
|
/***/ }),
|
202446
202916
|
|
202447
202917
|
/***/ 3719:
|
202448
|
-
/***/ ((module, __unused_webpack_exports,
|
202918
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_522645__) => {
|
202449
202919
|
|
202450
202920
|
"use strict";
|
202451
202921
|
|
202452
202922
|
|
202453
|
-
const { stringify } =
|
202454
|
-
const { outputFileSync } =
|
202923
|
+
const { stringify } = __nested_webpack_require_522645__(7653)
|
202924
|
+
const { outputFileSync } = __nested_webpack_require_522645__(3849)
|
202455
202925
|
|
202456
202926
|
function outputJsonSync (file, data, options) {
|
202457
202927
|
const str = stringify(data, options)
|
@@ -202465,13 +202935,13 @@ module.exports = outputJsonSync
|
|
202465
202935
|
/***/ }),
|
202466
202936
|
|
202467
202937
|
/***/ 7583:
|
202468
|
-
/***/ ((module, __unused_webpack_exports,
|
202938
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_523017__) => {
|
202469
202939
|
|
202470
202940
|
"use strict";
|
202471
202941
|
|
202472
202942
|
|
202473
|
-
const { stringify } =
|
202474
|
-
const { outputFile } =
|
202943
|
+
const { stringify } = __nested_webpack_require_523017__(7653)
|
202944
|
+
const { outputFile } = __nested_webpack_require_523017__(3849)
|
202475
202945
|
|
202476
202946
|
async function outputJson (file, data, options = {}) {
|
202477
202947
|
const str = stringify(data, options)
|
@@ -202485,12 +202955,12 @@ module.exports = outputJson
|
|
202485
202955
|
/***/ }),
|
202486
202956
|
|
202487
202957
|
/***/ 9181:
|
202488
|
-
/***/ ((module, __unused_webpack_exports,
|
202958
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_523390__) => {
|
202489
202959
|
|
202490
202960
|
"use strict";
|
202491
202961
|
|
202492
|
-
const u =
|
202493
|
-
const { makeDir: _makeDir, makeDirSync } =
|
202962
|
+
const u = __nested_webpack_require_523390__(7500).fromPromise
|
202963
|
+
const { makeDir: _makeDir, makeDirSync } = __nested_webpack_require_523390__(511)
|
202494
202964
|
const makeDir = u(_makeDir)
|
202495
202965
|
|
202496
202966
|
module.exports = {
|
@@ -202507,12 +202977,12 @@ module.exports = {
|
|
202507
202977
|
/***/ }),
|
202508
202978
|
|
202509
202979
|
/***/ 511:
|
202510
|
-
/***/ ((module, __unused_webpack_exports,
|
202980
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_523818__) => {
|
202511
202981
|
|
202512
202982
|
"use strict";
|
202513
202983
|
|
202514
|
-
const fs =
|
202515
|
-
const { checkPath } =
|
202984
|
+
const fs = __nested_webpack_require_523818__(893)
|
202985
|
+
const { checkPath } = __nested_webpack_require_523818__(1176)
|
202516
202986
|
|
202517
202987
|
const getMode = options => {
|
202518
202988
|
const defaults = { mode: 0o777 }
|
@@ -202542,7 +203012,7 @@ module.exports.makeDirSync = (dir, options) => {
|
|
202542
203012
|
/***/ }),
|
202543
203013
|
|
202544
203014
|
/***/ 1176:
|
202545
|
-
/***/ ((module, __unused_webpack_exports,
|
203015
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_524474__) => {
|
202546
203016
|
|
202547
203017
|
"use strict";
|
202548
203018
|
// Adapted from https://github.com/sindresorhus/make-dir
|
@@ -202551,7 +203021,7 @@ module.exports.makeDirSync = (dir, options) => {
|
|
202551
203021
|
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
202552
203022
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
202553
203023
|
|
202554
|
-
const path =
|
203024
|
+
const path = __nested_webpack_require_524474__(5622)
|
202555
203025
|
|
202556
203026
|
// https://github.com/nodejs/node/issues/8987
|
202557
203027
|
// https://github.com/libuv/libuv/pull/1088
|
@@ -202571,30 +203041,30 @@ module.exports.checkPath = function checkPath (pth) {
|
|
202571
203041
|
/***/ }),
|
202572
203042
|
|
202573
203043
|
/***/ 4168:
|
202574
|
-
/***/ ((module, __unused_webpack_exports,
|
203044
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_526235__) => {
|
202575
203045
|
|
202576
203046
|
"use strict";
|
202577
203047
|
|
202578
203048
|
|
202579
203049
|
module.exports = {
|
202580
|
-
moveSync:
|
203050
|
+
moveSync: __nested_webpack_require_526235__(6776)
|
202581
203051
|
}
|
202582
203052
|
|
202583
203053
|
|
202584
203054
|
/***/ }),
|
202585
203055
|
|
202586
203056
|
/***/ 6776:
|
202587
|
-
/***/ ((module, __unused_webpack_exports,
|
203057
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_526404__) => {
|
202588
203058
|
|
202589
203059
|
"use strict";
|
202590
203060
|
|
202591
203061
|
|
202592
|
-
const fs =
|
202593
|
-
const path =
|
202594
|
-
const copySync =
|
202595
|
-
const removeSync =
|
202596
|
-
const mkdirpSync =
|
202597
|
-
const stat =
|
203062
|
+
const fs = __nested_webpack_require_526404__(552)
|
203063
|
+
const path = __nested_webpack_require_526404__(5622)
|
203064
|
+
const copySync = __nested_webpack_require_526404__(9567).copySync
|
203065
|
+
const removeSync = __nested_webpack_require_526404__(4879).removeSync
|
203066
|
+
const mkdirpSync = __nested_webpack_require_526404__(9181).mkdirpSync
|
203067
|
+
const stat = __nested_webpack_require_526404__(9783)
|
202598
203068
|
|
202599
203069
|
function moveSync (src, dest, opts) {
|
202600
203070
|
opts = opts || {}
|
@@ -202646,32 +203116,32 @@ module.exports = moveSync
|
|
202646
203116
|
/***/ }),
|
202647
203117
|
|
202648
203118
|
/***/ 7819:
|
202649
|
-
/***/ ((module, __unused_webpack_exports,
|
203119
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_528016__) => {
|
202650
203120
|
|
202651
203121
|
"use strict";
|
202652
203122
|
|
202653
203123
|
|
202654
|
-
const u =
|
203124
|
+
const u = __nested_webpack_require_528016__(7500).fromCallback
|
202655
203125
|
module.exports = {
|
202656
|
-
move: u(
|
203126
|
+
move: u(__nested_webpack_require_528016__(4064))
|
202657
203127
|
}
|
202658
203128
|
|
202659
203129
|
|
202660
203130
|
/***/ }),
|
202661
203131
|
|
202662
203132
|
/***/ 4064:
|
202663
|
-
/***/ ((module, __unused_webpack_exports,
|
203133
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_528233__) => {
|
202664
203134
|
|
202665
203135
|
"use strict";
|
202666
203136
|
|
202667
203137
|
|
202668
|
-
const fs =
|
202669
|
-
const path =
|
202670
|
-
const copy =
|
202671
|
-
const remove =
|
202672
|
-
const mkdirp =
|
202673
|
-
const pathExists =
|
202674
|
-
const stat =
|
203138
|
+
const fs = __nested_webpack_require_528233__(552)
|
203139
|
+
const path = __nested_webpack_require_528233__(5622)
|
203140
|
+
const copy = __nested_webpack_require_528233__(8852).copy
|
203141
|
+
const remove = __nested_webpack_require_528233__(4879).remove
|
203142
|
+
const mkdirp = __nested_webpack_require_528233__(9181).mkdirp
|
203143
|
+
const pathExists = __nested_webpack_require_528233__(5516).pathExists
|
203144
|
+
const stat = __nested_webpack_require_528233__(9783)
|
202675
203145
|
|
202676
203146
|
function move (src, dest, opts, cb) {
|
202677
203147
|
if (typeof opts === 'function') {
|
@@ -202741,16 +203211,16 @@ module.exports = move
|
|
202741
203211
|
/***/ }),
|
202742
203212
|
|
202743
203213
|
/***/ 3849:
|
202744
|
-
/***/ ((module, __unused_webpack_exports,
|
203214
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_530349__) => {
|
202745
203215
|
|
202746
203216
|
"use strict";
|
202747
203217
|
|
202748
203218
|
|
202749
|
-
const u =
|
202750
|
-
const fs =
|
202751
|
-
const path =
|
202752
|
-
const mkdir =
|
202753
|
-
const pathExists =
|
203219
|
+
const u = __nested_webpack_require_530349__(7500).fromCallback
|
203220
|
+
const fs = __nested_webpack_require_530349__(552)
|
203221
|
+
const path = __nested_webpack_require_530349__(5622)
|
203222
|
+
const mkdir = __nested_webpack_require_530349__(9181)
|
203223
|
+
const pathExists = __nested_webpack_require_530349__(5516).pathExists
|
202754
203224
|
|
202755
203225
|
function outputFile (file, data, encoding, callback) {
|
202756
203226
|
if (typeof encoding === 'function') {
|
@@ -202789,12 +203259,12 @@ module.exports = {
|
|
202789
203259
|
/***/ }),
|
202790
203260
|
|
202791
203261
|
/***/ 5516:
|
202792
|
-
/***/ ((module, __unused_webpack_exports,
|
203262
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_531411__) => {
|
202793
203263
|
|
202794
203264
|
"use strict";
|
202795
203265
|
|
202796
|
-
const u =
|
202797
|
-
const fs =
|
203266
|
+
const u = __nested_webpack_require_531411__(7500).fromPromise
|
203267
|
+
const fs = __nested_webpack_require_531411__(893)
|
202798
203268
|
|
202799
203269
|
function pathExists (path) {
|
202800
203270
|
return fs.access(path).then(() => true).catch(() => false)
|
@@ -202809,14 +203279,14 @@ module.exports = {
|
|
202809
203279
|
/***/ }),
|
202810
203280
|
|
202811
203281
|
/***/ 4879:
|
202812
|
-
/***/ ((module, __unused_webpack_exports,
|
203282
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_531780__) => {
|
202813
203283
|
|
202814
203284
|
"use strict";
|
202815
203285
|
|
202816
203286
|
|
202817
|
-
const fs =
|
202818
|
-
const u =
|
202819
|
-
const rimraf =
|
203287
|
+
const fs = __nested_webpack_require_531780__(552)
|
203288
|
+
const u = __nested_webpack_require_531780__(7500).fromCallback
|
203289
|
+
const rimraf = __nested_webpack_require_531780__(7137)
|
202820
203290
|
|
202821
203291
|
function remove (path, callback) {
|
202822
203292
|
// Node 14.14.0+
|
@@ -202839,14 +203309,14 @@ module.exports = {
|
|
202839
203309
|
/***/ }),
|
202840
203310
|
|
202841
203311
|
/***/ 7137:
|
202842
|
-
/***/ ((module, __unused_webpack_exports,
|
203312
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_532375__) => {
|
202843
203313
|
|
202844
203314
|
"use strict";
|
202845
203315
|
|
202846
203316
|
|
202847
|
-
const fs =
|
202848
|
-
const path =
|
202849
|
-
const assert =
|
203317
|
+
const fs = __nested_webpack_require_532375__(552)
|
203318
|
+
const path = __nested_webpack_require_532375__(5622)
|
203319
|
+
const assert = __nested_webpack_require_532375__(2357)
|
202850
203320
|
|
202851
203321
|
const isWindows = (process.platform === 'win32')
|
202852
203322
|
|
@@ -203149,14 +203619,14 @@ rimraf.sync = rimrafSync
|
|
203149
203619
|
/***/ }),
|
203150
203620
|
|
203151
203621
|
/***/ 9783:
|
203152
|
-
/***/ ((module, __unused_webpack_exports,
|
203622
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_539934__) => {
|
203153
203623
|
|
203154
203624
|
"use strict";
|
203155
203625
|
|
203156
203626
|
|
203157
|
-
const fs =
|
203158
|
-
const path =
|
203159
|
-
const util =
|
203627
|
+
const fs = __nested_webpack_require_539934__(893)
|
203628
|
+
const path = __nested_webpack_require_539934__(5622)
|
203629
|
+
const util = __nested_webpack_require_539934__(1669)
|
203160
203630
|
|
203161
203631
|
function getStats (src, dest, opts) {
|
203162
203632
|
const statFunc = opts.dereference
|
@@ -203311,12 +203781,12 @@ module.exports = {
|
|
203311
203781
|
/***/ }),
|
203312
203782
|
|
203313
203783
|
/***/ 8605:
|
203314
|
-
/***/ ((module, __unused_webpack_exports,
|
203784
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_545284__) => {
|
203315
203785
|
|
203316
203786
|
"use strict";
|
203317
203787
|
|
203318
203788
|
|
203319
|
-
const fs =
|
203789
|
+
const fs = __nested_webpack_require_545284__(552)
|
203320
203790
|
|
203321
203791
|
function utimesMillis (path, atime, mtime, callback) {
|
203322
203792
|
// if (!HAS_MILLIS_RES) return fs.utimes(path, atime, mtime, callback)
|
@@ -203345,7 +203815,7 @@ module.exports = {
|
|
203345
203815
|
/***/ }),
|
203346
203816
|
|
203347
203817
|
/***/ 9686:
|
203348
|
-
/***/ ((__unused_webpack_module, exports,
|
203818
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_545997__) => {
|
203349
203819
|
|
203350
203820
|
exports.alphasort = alphasort
|
203351
203821
|
exports.alphasorti = alphasorti
|
@@ -203361,9 +203831,9 @@ function ownProp (obj, field) {
|
|
203361
203831
|
return Object.prototype.hasOwnProperty.call(obj, field)
|
203362
203832
|
}
|
203363
203833
|
|
203364
|
-
var path =
|
203365
|
-
var minimatch =
|
203366
|
-
var isAbsolute =
|
203834
|
+
var path = __nested_webpack_require_545997__(5622)
|
203835
|
+
var minimatch = __nested_webpack_require_545997__(9566)
|
203836
|
+
var isAbsolute = __nested_webpack_require_545997__(1323)
|
203367
203837
|
var Minimatch = minimatch.Minimatch
|
203368
203838
|
|
203369
203839
|
function alphasorti (a, b) {
|
@@ -203592,7 +204062,7 @@ function childrenIgnored (self, path) {
|
|
203592
204062
|
/***/ }),
|
203593
204063
|
|
203594
204064
|
/***/ 1104:
|
203595
|
-
/***/ ((module, __unused_webpack_exports,
|
204065
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_552271__) => {
|
203596
204066
|
|
203597
204067
|
// Approach:
|
203598
204068
|
//
|
@@ -203636,27 +204106,27 @@ function childrenIgnored (self, path) {
|
|
203636
204106
|
|
203637
204107
|
module.exports = glob
|
203638
204108
|
|
203639
|
-
var fs =
|
203640
|
-
var rp =
|
203641
|
-
var minimatch =
|
204109
|
+
var fs = __nested_webpack_require_552271__(5747)
|
204110
|
+
var rp = __nested_webpack_require_552271__(8945)
|
204111
|
+
var minimatch = __nested_webpack_require_552271__(9566)
|
203642
204112
|
var Minimatch = minimatch.Minimatch
|
203643
|
-
var inherits =
|
203644
|
-
var EE =
|
203645
|
-
var path =
|
203646
|
-
var assert =
|
203647
|
-
var isAbsolute =
|
203648
|
-
var globSync =
|
203649
|
-
var common =
|
204113
|
+
var inherits = __nested_webpack_require_552271__(6919)
|
204114
|
+
var EE = __nested_webpack_require_552271__(8614).EventEmitter
|
204115
|
+
var path = __nested_webpack_require_552271__(5622)
|
204116
|
+
var assert = __nested_webpack_require_552271__(2357)
|
204117
|
+
var isAbsolute = __nested_webpack_require_552271__(1323)
|
204118
|
+
var globSync = __nested_webpack_require_552271__(2231)
|
204119
|
+
var common = __nested_webpack_require_552271__(9686)
|
203650
204120
|
var alphasort = common.alphasort
|
203651
204121
|
var alphasorti = common.alphasorti
|
203652
204122
|
var setopts = common.setopts
|
203653
204123
|
var ownProp = common.ownProp
|
203654
|
-
var inflight =
|
203655
|
-
var util =
|
204124
|
+
var inflight = __nested_webpack_require_552271__(9442)
|
204125
|
+
var util = __nested_webpack_require_552271__(1669)
|
203656
204126
|
var childrenIgnored = common.childrenIgnored
|
203657
204127
|
var isIgnored = common.isIgnored
|
203658
204128
|
|
203659
|
-
var once =
|
204129
|
+
var once = __nested_webpack_require_552271__(7197)
|
203660
204130
|
|
203661
204131
|
function glob (pattern, options, cb) {
|
203662
204132
|
if (typeof options === 'function') cb = options, options = {}
|
@@ -204389,21 +204859,21 @@ Glob.prototype._stat2 = function (f, abs, er, stat, cb) {
|
|
204389
204859
|
/***/ }),
|
204390
204860
|
|
204391
204861
|
/***/ 2231:
|
204392
|
-
/***/ ((module, __unused_webpack_exports,
|
204862
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_571882__) => {
|
204393
204863
|
|
204394
204864
|
module.exports = globSync
|
204395
204865
|
globSync.GlobSync = GlobSync
|
204396
204866
|
|
204397
|
-
var fs =
|
204398
|
-
var rp =
|
204399
|
-
var minimatch =
|
204867
|
+
var fs = __nested_webpack_require_571882__(5747)
|
204868
|
+
var rp = __nested_webpack_require_571882__(8945)
|
204869
|
+
var minimatch = __nested_webpack_require_571882__(9566)
|
204400
204870
|
var Minimatch = minimatch.Minimatch
|
204401
|
-
var Glob =
|
204402
|
-
var util =
|
204403
|
-
var path =
|
204404
|
-
var assert =
|
204405
|
-
var isAbsolute =
|
204406
|
-
var common =
|
204871
|
+
var Glob = __nested_webpack_require_571882__(1104).Glob
|
204872
|
+
var util = __nested_webpack_require_571882__(1669)
|
204873
|
+
var path = __nested_webpack_require_571882__(5622)
|
204874
|
+
var assert = __nested_webpack_require_571882__(2357)
|
204875
|
+
var isAbsolute = __nested_webpack_require_571882__(1323)
|
204876
|
+
var common = __nested_webpack_require_571882__(9686)
|
204407
204877
|
var alphasort = common.alphasort
|
204408
204878
|
var alphasorti = common.alphasorti
|
204409
204879
|
var setopts = common.setopts
|
@@ -204882,13 +205352,13 @@ GlobSync.prototype._makeAbs = function (f) {
|
|
204882
205352
|
/***/ }),
|
204883
205353
|
|
204884
205354
|
/***/ 6540:
|
204885
|
-
/***/ ((module, __unused_webpack_exports,
|
205355
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_584032__) => {
|
204886
205356
|
|
204887
205357
|
"use strict";
|
204888
205358
|
|
204889
205359
|
|
204890
205360
|
|
204891
|
-
var yaml =
|
205361
|
+
var yaml = __nested_webpack_require_584032__(7973);
|
204892
205362
|
|
204893
205363
|
|
204894
205364
|
module.exports = yaml;
|
@@ -204897,14 +205367,14 @@ module.exports = yaml;
|
|
204897
205367
|
/***/ }),
|
204898
205368
|
|
204899
205369
|
/***/ 7973:
|
204900
|
-
/***/ ((module, __unused_webpack_exports,
|
205370
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_584206__) => {
|
204901
205371
|
|
204902
205372
|
"use strict";
|
204903
205373
|
|
204904
205374
|
|
204905
205375
|
|
204906
|
-
var loader =
|
204907
|
-
var dumper =
|
205376
|
+
var loader = __nested_webpack_require_584206__(6002);
|
205377
|
+
var dumper = __nested_webpack_require_584206__(927);
|
204908
205378
|
|
204909
205379
|
|
204910
205380
|
function deprecated(name) {
|
@@ -204914,25 +205384,25 @@ function deprecated(name) {
|
|
204914
205384
|
}
|
204915
205385
|
|
204916
205386
|
|
204917
|
-
module.exports.Type =
|
204918
|
-
module.exports.Schema =
|
204919
|
-
module.exports.FAILSAFE_SCHEMA =
|
204920
|
-
module.exports.JSON_SCHEMA =
|
204921
|
-
module.exports.CORE_SCHEMA =
|
204922
|
-
module.exports.DEFAULT_SAFE_SCHEMA =
|
204923
|
-
module.exports.DEFAULT_FULL_SCHEMA =
|
205387
|
+
module.exports.Type = __nested_webpack_require_584206__(6205);
|
205388
|
+
module.exports.Schema = __nested_webpack_require_584206__(1105);
|
205389
|
+
module.exports.FAILSAFE_SCHEMA = __nested_webpack_require_584206__(7037);
|
205390
|
+
module.exports.JSON_SCHEMA = __nested_webpack_require_584206__(7068);
|
205391
|
+
module.exports.CORE_SCHEMA = __nested_webpack_require_584206__(7209);
|
205392
|
+
module.exports.DEFAULT_SAFE_SCHEMA = __nested_webpack_require_584206__(998);
|
205393
|
+
module.exports.DEFAULT_FULL_SCHEMA = __nested_webpack_require_584206__(120);
|
204924
205394
|
module.exports.load = loader.load;
|
204925
205395
|
module.exports.loadAll = loader.loadAll;
|
204926
205396
|
module.exports.safeLoad = loader.safeLoad;
|
204927
205397
|
module.exports.safeLoadAll = loader.safeLoadAll;
|
204928
205398
|
module.exports.dump = dumper.dump;
|
204929
205399
|
module.exports.safeDump = dumper.safeDump;
|
204930
|
-
module.exports.YAMLException =
|
205400
|
+
module.exports.YAMLException = __nested_webpack_require_584206__(9179);
|
204931
205401
|
|
204932
205402
|
// Deprecated schema names from JS-YAML 2.0.x
|
204933
|
-
module.exports.MINIMAL_SCHEMA =
|
204934
|
-
module.exports.SAFE_SCHEMA =
|
204935
|
-
module.exports.DEFAULT_SCHEMA =
|
205403
|
+
module.exports.MINIMAL_SCHEMA = __nested_webpack_require_584206__(7037);
|
205404
|
+
module.exports.SAFE_SCHEMA = __nested_webpack_require_584206__(998);
|
205405
|
+
module.exports.DEFAULT_SCHEMA = __nested_webpack_require_584206__(120);
|
204936
205406
|
|
204937
205407
|
// Deprecated functions from JS-YAML 1.x.x
|
204938
205408
|
module.exports.scan = deprecated('scan');
|
@@ -205011,17 +205481,17 @@ module.exports.extend = extend;
|
|
205011
205481
|
/***/ }),
|
205012
205482
|
|
205013
205483
|
/***/ 927:
|
205014
|
-
/***/ ((module, __unused_webpack_exports,
|
205484
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_587020__) => {
|
205015
205485
|
|
205016
205486
|
"use strict";
|
205017
205487
|
|
205018
205488
|
|
205019
205489
|
/*eslint-disable no-use-before-define*/
|
205020
205490
|
|
205021
|
-
var common =
|
205022
|
-
var YAMLException =
|
205023
|
-
var DEFAULT_FULL_SCHEMA =
|
205024
|
-
var DEFAULT_SAFE_SCHEMA =
|
205491
|
+
var common = __nested_webpack_require_587020__(910);
|
205492
|
+
var YAMLException = __nested_webpack_require_587020__(9179);
|
205493
|
+
var DEFAULT_FULL_SCHEMA = __nested_webpack_require_587020__(120);
|
205494
|
+
var DEFAULT_SAFE_SCHEMA = __nested_webpack_require_587020__(998);
|
205025
205495
|
|
205026
205496
|
var _toString = Object.prototype.toString;
|
205027
205497
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
@@ -205897,18 +206367,18 @@ module.exports = YAMLException;
|
|
205897
206367
|
/***/ }),
|
205898
206368
|
|
205899
206369
|
/***/ 6002:
|
205900
|
-
/***/ ((module, __unused_webpack_exports,
|
206370
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_614723__) => {
|
205901
206371
|
|
205902
206372
|
"use strict";
|
205903
206373
|
|
205904
206374
|
|
205905
206375
|
/*eslint-disable max-len,no-use-before-define*/
|
205906
206376
|
|
205907
|
-
var common =
|
205908
|
-
var YAMLException =
|
205909
|
-
var Mark =
|
205910
|
-
var DEFAULT_SAFE_SCHEMA =
|
205911
|
-
var DEFAULT_FULL_SCHEMA =
|
206377
|
+
var common = __nested_webpack_require_614723__(910);
|
206378
|
+
var YAMLException = __nested_webpack_require_614723__(9179);
|
206379
|
+
var Mark = __nested_webpack_require_614723__(1100);
|
206380
|
+
var DEFAULT_SAFE_SCHEMA = __nested_webpack_require_614723__(998);
|
206381
|
+
var DEFAULT_FULL_SCHEMA = __nested_webpack_require_614723__(120);
|
205912
206382
|
|
205913
206383
|
|
205914
206384
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
@@ -207530,13 +208000,13 @@ module.exports.safeLoad = safeLoad;
|
|
207530
208000
|
/***/ }),
|
207531
208001
|
|
207532
208002
|
/***/ 1100:
|
207533
|
-
/***/ ((module, __unused_webpack_exports,
|
208003
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_658589__) => {
|
207534
208004
|
|
207535
208005
|
"use strict";
|
207536
208006
|
|
207537
208007
|
|
207538
208008
|
|
207539
|
-
var common =
|
208009
|
+
var common = __nested_webpack_require_658589__(910);
|
207540
208010
|
|
207541
208011
|
|
207542
208012
|
function Mark(name, buffer, position, line, column) {
|
@@ -207614,16 +208084,16 @@ module.exports = Mark;
|
|
207614
208084
|
/***/ }),
|
207615
208085
|
|
207616
208086
|
/***/ 1105:
|
207617
|
-
/***/ ((module, __unused_webpack_exports,
|
208087
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_660251__) => {
|
207618
208088
|
|
207619
208089
|
"use strict";
|
207620
208090
|
|
207621
208091
|
|
207622
208092
|
/*eslint-disable max-len*/
|
207623
208093
|
|
207624
|
-
var common =
|
207625
|
-
var YAMLException =
|
207626
|
-
var Type =
|
208094
|
+
var common = __nested_webpack_require_660251__(910);
|
208095
|
+
var YAMLException = __nested_webpack_require_660251__(9179);
|
208096
|
+
var Type = __nested_webpack_require_660251__(6205);
|
207627
208097
|
|
207628
208098
|
|
207629
208099
|
function compileList(schema, name, result) {
|
@@ -207730,7 +208200,7 @@ module.exports = Schema;
|
|
207730
208200
|
/***/ }),
|
207731
208201
|
|
207732
208202
|
/***/ 7209:
|
207733
|
-
/***/ ((module, __unused_webpack_exports,
|
208203
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_663115__) => {
|
207734
208204
|
|
207735
208205
|
"use strict";
|
207736
208206
|
// Standard YAML's Core schema.
|
@@ -207743,12 +208213,12 @@ module.exports = Schema;
|
|
207743
208213
|
|
207744
208214
|
|
207745
208215
|
|
207746
|
-
var Schema =
|
208216
|
+
var Schema = __nested_webpack_require_663115__(1105);
|
207747
208217
|
|
207748
208218
|
|
207749
208219
|
module.exports = new Schema({
|
207750
208220
|
include: [
|
207751
|
-
|
208221
|
+
__nested_webpack_require_663115__(7068)
|
207752
208222
|
]
|
207753
208223
|
});
|
207754
208224
|
|
@@ -207756,7 +208226,7 @@ module.exports = new Schema({
|
|
207756
208226
|
/***/ }),
|
207757
208227
|
|
207758
208228
|
/***/ 120:
|
207759
|
-
/***/ ((module, __unused_webpack_exports,
|
208229
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_663584__) => {
|
207760
208230
|
|
207761
208231
|
"use strict";
|
207762
208232
|
// JS-YAML's default schema for `load` function.
|
@@ -207771,17 +208241,17 @@ module.exports = new Schema({
|
|
207771
208241
|
|
207772
208242
|
|
207773
208243
|
|
207774
|
-
var Schema =
|
208244
|
+
var Schema = __nested_webpack_require_663584__(1105);
|
207775
208245
|
|
207776
208246
|
|
207777
208247
|
module.exports = Schema.DEFAULT = new Schema({
|
207778
208248
|
include: [
|
207779
|
-
|
208249
|
+
__nested_webpack_require_663584__(998)
|
207780
208250
|
],
|
207781
208251
|
explicit: [
|
207782
|
-
|
207783
|
-
|
207784
|
-
|
208252
|
+
__nested_webpack_require_663584__(8113),
|
208253
|
+
__nested_webpack_require_663584__(7274),
|
208254
|
+
__nested_webpack_require_663584__(6677)
|
207785
208255
|
]
|
207786
208256
|
});
|
207787
208257
|
|
@@ -207789,7 +208259,7 @@ module.exports = Schema.DEFAULT = new Schema({
|
|
207789
208259
|
/***/ }),
|
207790
208260
|
|
207791
208261
|
/***/ 998:
|
207792
|
-
/***/ ((module, __unused_webpack_exports,
|
208262
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_664278__) => {
|
207793
208263
|
|
207794
208264
|
"use strict";
|
207795
208265
|
// JS-YAML's default schema for `safeLoad` function.
|
@@ -207802,22 +208272,22 @@ module.exports = Schema.DEFAULT = new Schema({
|
|
207802
208272
|
|
207803
208273
|
|
207804
208274
|
|
207805
|
-
var Schema =
|
208275
|
+
var Schema = __nested_webpack_require_664278__(1105);
|
207806
208276
|
|
207807
208277
|
|
207808
208278
|
module.exports = new Schema({
|
207809
208279
|
include: [
|
207810
|
-
|
208280
|
+
__nested_webpack_require_664278__(7209)
|
207811
208281
|
],
|
207812
208282
|
implicit: [
|
207813
|
-
|
207814
|
-
|
208283
|
+
__nested_webpack_require_664278__(9918),
|
208284
|
+
__nested_webpack_require_664278__(397)
|
207815
208285
|
],
|
207816
208286
|
explicit: [
|
207817
|
-
|
207818
|
-
|
207819
|
-
|
207820
|
-
|
208287
|
+
__nested_webpack_require_664278__(2016),
|
208288
|
+
__nested_webpack_require_664278__(7511),
|
208289
|
+
__nested_webpack_require_664278__(8149),
|
208290
|
+
__nested_webpack_require_664278__(9883)
|
207821
208291
|
]
|
207822
208292
|
});
|
207823
208293
|
|
@@ -207825,7 +208295,7 @@ module.exports = new Schema({
|
|
207825
208295
|
/***/ }),
|
207826
208296
|
|
207827
208297
|
/***/ 7037:
|
207828
|
-
/***/ ((module, __unused_webpack_exports,
|
208298
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_664990__) => {
|
207829
208299
|
|
207830
208300
|
"use strict";
|
207831
208301
|
// Standard YAML's Failsafe schema.
|
@@ -207835,14 +208305,14 @@ module.exports = new Schema({
|
|
207835
208305
|
|
207836
208306
|
|
207837
208307
|
|
207838
|
-
var Schema =
|
208308
|
+
var Schema = __nested_webpack_require_664990__(1105);
|
207839
208309
|
|
207840
208310
|
|
207841
208311
|
module.exports = new Schema({
|
207842
208312
|
explicit: [
|
207843
|
-
|
207844
|
-
|
207845
|
-
|
208313
|
+
__nested_webpack_require_664990__(4391),
|
208314
|
+
__nested_webpack_require_664990__(636),
|
208315
|
+
__nested_webpack_require_664990__(1680)
|
207846
208316
|
]
|
207847
208317
|
});
|
207848
208318
|
|
@@ -207850,7 +208320,7 @@ module.exports = new Schema({
|
|
207850
208320
|
/***/ }),
|
207851
208321
|
|
207852
208322
|
/***/ 7068:
|
207853
|
-
/***/ ((module, __unused_webpack_exports,
|
208323
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_665376__) => {
|
207854
208324
|
|
207855
208325
|
"use strict";
|
207856
208326
|
// Standard YAML's JSON schema.
|
@@ -207864,18 +208334,18 @@ module.exports = new Schema({
|
|
207864
208334
|
|
207865
208335
|
|
207866
208336
|
|
207867
|
-
var Schema =
|
208337
|
+
var Schema = __nested_webpack_require_665376__(1105);
|
207868
208338
|
|
207869
208339
|
|
207870
208340
|
module.exports = new Schema({
|
207871
208341
|
include: [
|
207872
|
-
|
208342
|
+
__nested_webpack_require_665376__(7037)
|
207873
208343
|
],
|
207874
208344
|
implicit: [
|
207875
|
-
|
207876
|
-
|
207877
|
-
|
207878
|
-
|
208345
|
+
__nested_webpack_require_665376__(1900),
|
208346
|
+
__nested_webpack_require_665376__(3385),
|
208347
|
+
__nested_webpack_require_665376__(7446),
|
208348
|
+
__nested_webpack_require_665376__(7481)
|
207879
208349
|
]
|
207880
208350
|
});
|
207881
208351
|
|
@@ -207883,12 +208353,12 @@ module.exports = new Schema({
|
|
207883
208353
|
/***/ }),
|
207884
208354
|
|
207885
208355
|
/***/ 6205:
|
207886
|
-
/***/ ((module, __unused_webpack_exports,
|
208356
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_666074__) => {
|
207887
208357
|
|
207888
208358
|
"use strict";
|
207889
208359
|
|
207890
208360
|
|
207891
|
-
var YAMLException =
|
208361
|
+
var YAMLException = __nested_webpack_require_666074__(9179);
|
207892
208362
|
|
207893
208363
|
var TYPE_CONSTRUCTOR_OPTIONS = [
|
207894
208364
|
'kind',
|
@@ -207952,7 +208422,7 @@ module.exports = Type;
|
|
207952
208422
|
/***/ }),
|
207953
208423
|
|
207954
208424
|
/***/ 2016:
|
207955
|
-
/***/ ((module, __unused_webpack_exports,
|
208425
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_667758__) => {
|
207956
208426
|
|
207957
208427
|
"use strict";
|
207958
208428
|
|
@@ -207967,7 +208437,7 @@ try {
|
|
207967
208437
|
NodeBuffer = _require('buffer').Buffer;
|
207968
208438
|
} catch (__) {}
|
207969
208439
|
|
207970
|
-
var Type =
|
208440
|
+
var Type = __nested_webpack_require_667758__(6205);
|
207971
208441
|
|
207972
208442
|
|
207973
208443
|
// [ 64, 65, 66 ] -> [ padding, CR, LF ]
|
@@ -208098,12 +208568,12 @@ module.exports = new Type('tag:yaml.org,2002:binary', {
|
|
208098
208568
|
/***/ }),
|
208099
208569
|
|
208100
208570
|
/***/ 3385:
|
208101
|
-
/***/ ((module, __unused_webpack_exports,
|
208571
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_671150__) => {
|
208102
208572
|
|
208103
208573
|
"use strict";
|
208104
208574
|
|
208105
208575
|
|
208106
|
-
var Type =
|
208576
|
+
var Type = __nested_webpack_require_671150__(6205);
|
208107
208577
|
|
208108
208578
|
function resolveYamlBoolean(data) {
|
208109
208579
|
if (data === null) return false;
|
@@ -208141,13 +208611,13 @@ module.exports = new Type('tag:yaml.org,2002:bool', {
|
|
208141
208611
|
/***/ }),
|
208142
208612
|
|
208143
208613
|
/***/ 7481:
|
208144
|
-
/***/ ((module, __unused_webpack_exports,
|
208614
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_672223__) => {
|
208145
208615
|
|
208146
208616
|
"use strict";
|
208147
208617
|
|
208148
208618
|
|
208149
|
-
var common =
|
208150
|
-
var Type =
|
208619
|
+
var common = __nested_webpack_require_672223__(910);
|
208620
|
+
var Type = __nested_webpack_require_672223__(6205);
|
208151
208621
|
|
208152
208622
|
var YAML_FLOAT_PATTERN = new RegExp(
|
208153
208623
|
// 2.5e4, 2.5 and integers
|
@@ -208265,13 +208735,13 @@ module.exports = new Type('tag:yaml.org,2002:float', {
|
|
208265
208735
|
/***/ }),
|
208266
208736
|
|
208267
208737
|
/***/ 7446:
|
208268
|
-
/***/ ((module, __unused_webpack_exports,
|
208738
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_675169__) => {
|
208269
208739
|
|
208270
208740
|
"use strict";
|
208271
208741
|
|
208272
208742
|
|
208273
|
-
var common =
|
208274
|
-
var Type =
|
208743
|
+
var common = __nested_webpack_require_675169__(910);
|
208744
|
+
var Type = __nested_webpack_require_675169__(6205);
|
208275
208745
|
|
208276
208746
|
function isHexCode(c) {
|
208277
208747
|
return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) ||
|
@@ -208446,7 +208916,7 @@ module.exports = new Type('tag:yaml.org,2002:int', {
|
|
208446
208916
|
/***/ }),
|
208447
208917
|
|
208448
208918
|
/***/ 6677:
|
208449
|
-
/***/ ((module, __unused_webpack_exports,
|
208919
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_679341__) => {
|
208450
208920
|
|
208451
208921
|
"use strict";
|
208452
208922
|
|
@@ -208469,7 +208939,7 @@ try {
|
|
208469
208939
|
if (typeof window !== 'undefined') esprima = window.esprima;
|
208470
208940
|
}
|
208471
208941
|
|
208472
|
-
var Type =
|
208942
|
+
var Type = __nested_webpack_require_679341__(6205);
|
208473
208943
|
|
208474
208944
|
function resolveJavascriptFunction(data) {
|
208475
208945
|
if (data === null) return false;
|
@@ -208546,12 +209016,12 @@ module.exports = new Type('tag:yaml.org,2002:js/function', {
|
|
208546
209016
|
/***/ }),
|
208547
209017
|
|
208548
209018
|
/***/ 7274:
|
208549
|
-
/***/ ((module, __unused_webpack_exports,
|
209019
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_682238__) => {
|
208550
209020
|
|
208551
209021
|
"use strict";
|
208552
209022
|
|
208553
209023
|
|
208554
|
-
var Type =
|
209024
|
+
var Type = __nested_webpack_require_682238__(6205);
|
208555
209025
|
|
208556
209026
|
function resolveJavascriptRegExp(data) {
|
208557
209027
|
if (data === null) return false;
|
@@ -208614,12 +209084,12 @@ module.exports = new Type('tag:yaml.org,2002:js/regexp', {
|
|
208614
209084
|
/***/ }),
|
208615
209085
|
|
208616
209086
|
/***/ 8113:
|
208617
|
-
/***/ ((module, __unused_webpack_exports,
|
209087
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_683909__) => {
|
208618
209088
|
|
208619
209089
|
"use strict";
|
208620
209090
|
|
208621
209091
|
|
208622
|
-
var Type =
|
209092
|
+
var Type = __nested_webpack_require_683909__(6205);
|
208623
209093
|
|
208624
209094
|
function resolveJavascriptUndefined() {
|
208625
209095
|
return true;
|
@@ -208650,12 +209120,12 @@ module.exports = new Type('tag:yaml.org,2002:js/undefined', {
|
|
208650
209120
|
/***/ }),
|
208651
209121
|
|
208652
209122
|
/***/ 1680:
|
208653
|
-
/***/ ((module, __unused_webpack_exports,
|
209123
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_684581__) => {
|
208654
209124
|
|
208655
209125
|
"use strict";
|
208656
209126
|
|
208657
209127
|
|
208658
|
-
var Type =
|
209128
|
+
var Type = __nested_webpack_require_684581__(6205);
|
208659
209129
|
|
208660
209130
|
module.exports = new Type('tag:yaml.org,2002:map', {
|
208661
209131
|
kind: 'mapping',
|
@@ -208666,12 +209136,12 @@ module.exports = new Type('tag:yaml.org,2002:map', {
|
|
208666
209136
|
/***/ }),
|
208667
209137
|
|
208668
209138
|
/***/ 397:
|
208669
|
-
/***/ ((module, __unused_webpack_exports,
|
209139
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_684872__) => {
|
208670
209140
|
|
208671
209141
|
"use strict";
|
208672
209142
|
|
208673
209143
|
|
208674
|
-
var Type =
|
209144
|
+
var Type = __nested_webpack_require_684872__(6205);
|
208675
209145
|
|
208676
209146
|
function resolveYamlMerge(data) {
|
208677
209147
|
return data === '<<' || data === null;
|
@@ -208686,12 +209156,12 @@ module.exports = new Type('tag:yaml.org,2002:merge', {
|
|
208686
209156
|
/***/ }),
|
208687
209157
|
|
208688
209158
|
/***/ 1900:
|
208689
|
-
/***/ ((module, __unused_webpack_exports,
|
209159
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_685204__) => {
|
208690
209160
|
|
208691
209161
|
"use strict";
|
208692
209162
|
|
208693
209163
|
|
208694
|
-
var Type =
|
209164
|
+
var Type = __nested_webpack_require_685204__(6205);
|
208695
209165
|
|
208696
209166
|
function resolveYamlNull(data) {
|
208697
209167
|
if (data === null) return true;
|
@@ -208728,12 +209198,12 @@ module.exports = new Type('tag:yaml.org,2002:null', {
|
|
208728
209198
|
/***/ }),
|
208729
209199
|
|
208730
209200
|
/***/ 7511:
|
208731
|
-
/***/ ((module, __unused_webpack_exports,
|
209201
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_686067__) => {
|
208732
209202
|
|
208733
209203
|
"use strict";
|
208734
209204
|
|
208735
209205
|
|
208736
|
-
var Type =
|
209206
|
+
var Type = __nested_webpack_require_686067__(6205);
|
208737
209207
|
|
208738
209208
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
208739
209209
|
var _toString = Object.prototype.toString;
|
@@ -208780,12 +209250,12 @@ module.exports = new Type('tag:yaml.org,2002:omap', {
|
|
208780
209250
|
/***/ }),
|
208781
209251
|
|
208782
209252
|
/***/ 8149:
|
208783
|
-
/***/ ((module, __unused_webpack_exports,
|
209253
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_687192__) => {
|
208784
209254
|
|
208785
209255
|
"use strict";
|
208786
209256
|
|
208787
209257
|
|
208788
|
-
var Type =
|
209258
|
+
var Type = __nested_webpack_require_687192__(6205);
|
208789
209259
|
|
208790
209260
|
var _toString = Object.prototype.toString;
|
208791
209261
|
|
@@ -208841,12 +209311,12 @@ module.exports = new Type('tag:yaml.org,2002:pairs', {
|
|
208841
209311
|
/***/ }),
|
208842
209312
|
|
208843
209313
|
/***/ 636:
|
208844
|
-
/***/ ((module, __unused_webpack_exports,
|
209314
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_688377__) => {
|
208845
209315
|
|
208846
209316
|
"use strict";
|
208847
209317
|
|
208848
209318
|
|
208849
|
-
var Type =
|
209319
|
+
var Type = __nested_webpack_require_688377__(6205);
|
208850
209320
|
|
208851
209321
|
module.exports = new Type('tag:yaml.org,2002:seq', {
|
208852
209322
|
kind: 'sequence',
|
@@ -208857,12 +209327,12 @@ module.exports = new Type('tag:yaml.org,2002:seq', {
|
|
208857
209327
|
/***/ }),
|
208858
209328
|
|
208859
209329
|
/***/ 9883:
|
208860
|
-
/***/ ((module, __unused_webpack_exports,
|
209330
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_688670__) => {
|
208861
209331
|
|
208862
209332
|
"use strict";
|
208863
209333
|
|
208864
209334
|
|
208865
|
-
var Type =
|
209335
|
+
var Type = __nested_webpack_require_688670__(6205);
|
208866
209336
|
|
208867
209337
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
208868
209338
|
|
@@ -208894,12 +209364,12 @@ module.exports = new Type('tag:yaml.org,2002:set', {
|
|
208894
209364
|
/***/ }),
|
208895
209365
|
|
208896
209366
|
/***/ 4391:
|
208897
|
-
/***/ ((module, __unused_webpack_exports,
|
209367
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_689319__) => {
|
208898
209368
|
|
208899
209369
|
"use strict";
|
208900
209370
|
|
208901
209371
|
|
208902
|
-
var Type =
|
209372
|
+
var Type = __nested_webpack_require_689319__(6205);
|
208903
209373
|
|
208904
209374
|
module.exports = new Type('tag:yaml.org,2002:str', {
|
208905
209375
|
kind: 'scalar',
|
@@ -208910,12 +209380,12 @@ module.exports = new Type('tag:yaml.org,2002:str', {
|
|
208910
209380
|
/***/ }),
|
208911
209381
|
|
208912
209382
|
/***/ 9918:
|
208913
|
-
/***/ ((module, __unused_webpack_exports,
|
209383
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_689610__) => {
|
208914
209384
|
|
208915
209385
|
"use strict";
|
208916
209386
|
|
208917
209387
|
|
208918
|
-
var Type =
|
209388
|
+
var Type = __nested_webpack_require_689610__(6205);
|
208919
209389
|
|
208920
209390
|
var YAML_DATE_REGEXP = new RegExp(
|
208921
209391
|
'^([0-9][0-9][0-9][0-9])' + // [1] year
|
@@ -209006,16 +209476,16 @@ module.exports = new Type('tag:yaml.org,2002:timestamp', {
|
|
209006
209476
|
/***/ }),
|
209007
209477
|
|
209008
209478
|
/***/ 4862:
|
209009
|
-
/***/ ((module, __unused_webpack_exports,
|
209479
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_692283__) => {
|
209010
209480
|
|
209011
209481
|
let _fs
|
209012
209482
|
try {
|
209013
|
-
_fs =
|
209483
|
+
_fs = __nested_webpack_require_692283__(552)
|
209014
209484
|
} catch (_) {
|
209015
|
-
_fs =
|
209485
|
+
_fs = __nested_webpack_require_692283__(5747)
|
209016
209486
|
}
|
209017
|
-
const universalify =
|
209018
|
-
const { stringify, stripBom } =
|
209487
|
+
const universalify = __nested_webpack_require_692283__(7500)
|
209488
|
+
const { stringify, stripBom } = __nested_webpack_require_692283__(7653)
|
209019
209489
|
|
209020
209490
|
async function _readFile (file, options = {}) {
|
209021
209491
|
if (typeof options === 'string') {
|
@@ -210726,7 +211196,7 @@ exports.fromPromise = function (fn) {
|
|
210726
211196
|
/***/ }),
|
210727
211197
|
|
210728
211198
|
/***/ 8438:
|
210729
|
-
/***/ (function(__unused_webpack_module, exports,
|
211199
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_736445__) {
|
210730
211200
|
|
210731
211201
|
"use strict";
|
210732
211202
|
|
@@ -210742,10 +211212,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
210742
211212
|
};
|
210743
211213
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
210744
211214
|
exports.frameworks = void 0;
|
210745
|
-
const path_1 =
|
210746
|
-
const fs_1 =
|
210747
|
-
const read_config_file_1 =
|
210748
|
-
__exportStar(
|
211215
|
+
const path_1 = __nested_webpack_require_736445__(5622);
|
211216
|
+
const fs_1 = __nested_webpack_require_736445__(5747);
|
211217
|
+
const read_config_file_1 = __nested_webpack_require_736445__(3734);
|
211218
|
+
__exportStar(__nested_webpack_require_736445__(2171), exports);
|
210749
211219
|
const { readdir, readFile, unlink } = fs_1.promises;
|
210750
211220
|
/**
|
210751
211221
|
* Please note that is extremely important that the `dependency` property needs
|
@@ -212737,7 +213207,7 @@ exports.default = def;
|
|
212737
213207
|
/***/ }),
|
212738
213208
|
|
212739
213209
|
/***/ 3734:
|
212740
|
-
/***/ (function(__unused_webpack_module, exports,
|
213210
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_807534__) {
|
212741
213211
|
|
212742
213212
|
"use strict";
|
212743
213213
|
|
@@ -212746,9 +213216,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
212746
213216
|
};
|
212747
213217
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
212748
213218
|
exports.readConfigFile = void 0;
|
212749
|
-
const js_yaml_1 = __importDefault(
|
212750
|
-
const toml_1 = __importDefault(
|
212751
|
-
const fs_1 =
|
213219
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_807534__(641));
|
213220
|
+
const toml_1 = __importDefault(__nested_webpack_require_807534__(9434));
|
213221
|
+
const fs_1 = __nested_webpack_require_807534__(5747);
|
212752
213222
|
const { readFile } = fs_1.promises;
|
212753
213223
|
async function readFileOrNull(file) {
|
212754
213224
|
try {
|
@@ -212797,13 +213267,13 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
212797
213267
|
/***/ }),
|
212798
213268
|
|
212799
213269
|
/***/ 641:
|
212800
|
-
/***/ ((module, __unused_webpack_exports,
|
213270
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_809140__) => {
|
212801
213271
|
|
212802
213272
|
"use strict";
|
212803
213273
|
|
212804
213274
|
|
212805
213275
|
|
212806
|
-
var yaml =
|
213276
|
+
var yaml = __nested_webpack_require_809140__(9633);
|
212807
213277
|
|
212808
213278
|
|
212809
213279
|
module.exports = yaml;
|
@@ -212812,14 +213282,14 @@ module.exports = yaml;
|
|
212812
213282
|
/***/ }),
|
212813
213283
|
|
212814
213284
|
/***/ 9633:
|
212815
|
-
/***/ ((module, __unused_webpack_exports,
|
213285
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_809314__) => {
|
212816
213286
|
|
212817
213287
|
"use strict";
|
212818
213288
|
|
212819
213289
|
|
212820
213290
|
|
212821
|
-
var loader =
|
212822
|
-
var dumper =
|
213291
|
+
var loader = __nested_webpack_require_809314__(4349);
|
213292
|
+
var dumper = __nested_webpack_require_809314__(8047);
|
212823
213293
|
|
212824
213294
|
|
212825
213295
|
function deprecated(name) {
|
@@ -212829,25 +213299,25 @@ function deprecated(name) {
|
|
212829
213299
|
}
|
212830
213300
|
|
212831
213301
|
|
212832
|
-
module.exports.Type =
|
212833
|
-
module.exports.Schema =
|
212834
|
-
module.exports.FAILSAFE_SCHEMA =
|
212835
|
-
module.exports.JSON_SCHEMA =
|
212836
|
-
module.exports.CORE_SCHEMA =
|
212837
|
-
module.exports.DEFAULT_SAFE_SCHEMA =
|
212838
|
-
module.exports.DEFAULT_FULL_SCHEMA =
|
213302
|
+
module.exports.Type = __nested_webpack_require_809314__(6876);
|
213303
|
+
module.exports.Schema = __nested_webpack_require_809314__(6105);
|
213304
|
+
module.exports.FAILSAFE_SCHEMA = __nested_webpack_require_809314__(8441);
|
213305
|
+
module.exports.JSON_SCHEMA = __nested_webpack_require_809314__(1486);
|
213306
|
+
module.exports.CORE_SCHEMA = __nested_webpack_require_809314__(1112);
|
213307
|
+
module.exports.DEFAULT_SAFE_SCHEMA = __nested_webpack_require_809314__(596);
|
213308
|
+
module.exports.DEFAULT_FULL_SCHEMA = __nested_webpack_require_809314__(9647);
|
212839
213309
|
module.exports.load = loader.load;
|
212840
213310
|
module.exports.loadAll = loader.loadAll;
|
212841
213311
|
module.exports.safeLoad = loader.safeLoad;
|
212842
213312
|
module.exports.safeLoadAll = loader.safeLoadAll;
|
212843
213313
|
module.exports.dump = dumper.dump;
|
212844
213314
|
module.exports.safeDump = dumper.safeDump;
|
212845
|
-
module.exports.YAMLException =
|
213315
|
+
module.exports.YAMLException = __nested_webpack_require_809314__(3237);
|
212846
213316
|
|
212847
213317
|
// Deprecated schema names from JS-YAML 2.0.x
|
212848
|
-
module.exports.MINIMAL_SCHEMA =
|
212849
|
-
module.exports.SAFE_SCHEMA =
|
212850
|
-
module.exports.DEFAULT_SCHEMA =
|
213318
|
+
module.exports.MINIMAL_SCHEMA = __nested_webpack_require_809314__(8441);
|
213319
|
+
module.exports.SAFE_SCHEMA = __nested_webpack_require_809314__(596);
|
213320
|
+
module.exports.DEFAULT_SCHEMA = __nested_webpack_require_809314__(9647);
|
212851
213321
|
|
212852
213322
|
// Deprecated functions from JS-YAML 1.x.x
|
212853
213323
|
module.exports.scan = deprecated('scan');
|
@@ -212926,17 +213396,17 @@ module.exports.extend = extend;
|
|
212926
213396
|
/***/ }),
|
212927
213397
|
|
212928
213398
|
/***/ 8047:
|
212929
|
-
/***/ ((module, __unused_webpack_exports,
|
213399
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_812132__) => {
|
212930
213400
|
|
212931
213401
|
"use strict";
|
212932
213402
|
|
212933
213403
|
|
212934
213404
|
/*eslint-disable no-use-before-define*/
|
212935
213405
|
|
212936
|
-
var common =
|
212937
|
-
var YAMLException =
|
212938
|
-
var DEFAULT_FULL_SCHEMA =
|
212939
|
-
var DEFAULT_SAFE_SCHEMA =
|
213406
|
+
var common = __nested_webpack_require_812132__(903);
|
213407
|
+
var YAMLException = __nested_webpack_require_812132__(3237);
|
213408
|
+
var DEFAULT_FULL_SCHEMA = __nested_webpack_require_812132__(9647);
|
213409
|
+
var DEFAULT_SAFE_SCHEMA = __nested_webpack_require_812132__(596);
|
212940
213410
|
|
212941
213411
|
var _toString = Object.prototype.toString;
|
212942
213412
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
@@ -213812,18 +214282,18 @@ module.exports = YAMLException;
|
|
213812
214282
|
/***/ }),
|
213813
214283
|
|
213814
214284
|
/***/ 4349:
|
213815
|
-
/***/ ((module, __unused_webpack_exports,
|
214285
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_839836__) => {
|
213816
214286
|
|
213817
214287
|
"use strict";
|
213818
214288
|
|
213819
214289
|
|
213820
214290
|
/*eslint-disable max-len,no-use-before-define*/
|
213821
214291
|
|
213822
|
-
var common =
|
213823
|
-
var YAMLException =
|
213824
|
-
var Mark =
|
213825
|
-
var DEFAULT_SAFE_SCHEMA =
|
213826
|
-
var DEFAULT_FULL_SCHEMA =
|
214292
|
+
var common = __nested_webpack_require_839836__(903);
|
214293
|
+
var YAMLException = __nested_webpack_require_839836__(3237);
|
214294
|
+
var Mark = __nested_webpack_require_839836__(4926);
|
214295
|
+
var DEFAULT_SAFE_SCHEMA = __nested_webpack_require_839836__(596);
|
214296
|
+
var DEFAULT_FULL_SCHEMA = __nested_webpack_require_839836__(9647);
|
213827
214297
|
|
213828
214298
|
|
213829
214299
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
@@ -215445,13 +215915,13 @@ module.exports.safeLoad = safeLoad;
|
|
215445
215915
|
/***/ }),
|
215446
215916
|
|
215447
215917
|
/***/ 4926:
|
215448
|
-
/***/ ((module, __unused_webpack_exports,
|
215918
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_883703__) => {
|
215449
215919
|
|
215450
215920
|
"use strict";
|
215451
215921
|
|
215452
215922
|
|
215453
215923
|
|
215454
|
-
var common =
|
215924
|
+
var common = __nested_webpack_require_883703__(903);
|
215455
215925
|
|
215456
215926
|
|
215457
215927
|
function Mark(name, buffer, position, line, column) {
|
@@ -215529,16 +215999,16 @@ module.exports = Mark;
|
|
215529
215999
|
/***/ }),
|
215530
216000
|
|
215531
216001
|
/***/ 6105:
|
215532
|
-
/***/ ((module, __unused_webpack_exports,
|
216002
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_885365__) => {
|
215533
216003
|
|
215534
216004
|
"use strict";
|
215535
216005
|
|
215536
216006
|
|
215537
216007
|
/*eslint-disable max-len*/
|
215538
216008
|
|
215539
|
-
var common =
|
215540
|
-
var YAMLException =
|
215541
|
-
var Type =
|
216009
|
+
var common = __nested_webpack_require_885365__(903);
|
216010
|
+
var YAMLException = __nested_webpack_require_885365__(3237);
|
216011
|
+
var Type = __nested_webpack_require_885365__(6876);
|
215542
216012
|
|
215543
216013
|
|
215544
216014
|
function compileList(schema, name, result) {
|
@@ -215645,7 +216115,7 @@ module.exports = Schema;
|
|
215645
216115
|
/***/ }),
|
215646
216116
|
|
215647
216117
|
/***/ 1112:
|
215648
|
-
/***/ ((module, __unused_webpack_exports,
|
216118
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_888229__) => {
|
215649
216119
|
|
215650
216120
|
"use strict";
|
215651
216121
|
// Standard YAML's Core schema.
|
@@ -215658,12 +216128,12 @@ module.exports = Schema;
|
|
215658
216128
|
|
215659
216129
|
|
215660
216130
|
|
215661
|
-
var Schema =
|
216131
|
+
var Schema = __nested_webpack_require_888229__(6105);
|
215662
216132
|
|
215663
216133
|
|
215664
216134
|
module.exports = new Schema({
|
215665
216135
|
include: [
|
215666
|
-
|
216136
|
+
__nested_webpack_require_888229__(1486)
|
215667
216137
|
]
|
215668
216138
|
});
|
215669
216139
|
|
@@ -215671,7 +216141,7 @@ module.exports = new Schema({
|
|
215671
216141
|
/***/ }),
|
215672
216142
|
|
215673
216143
|
/***/ 9647:
|
215674
|
-
/***/ ((module, __unused_webpack_exports,
|
216144
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_888699__) => {
|
215675
216145
|
|
215676
216146
|
"use strict";
|
215677
216147
|
// JS-YAML's default schema for `load` function.
|
@@ -215686,17 +216156,17 @@ module.exports = new Schema({
|
|
215686
216156
|
|
215687
216157
|
|
215688
216158
|
|
215689
|
-
var Schema =
|
216159
|
+
var Schema = __nested_webpack_require_888699__(6105);
|
215690
216160
|
|
215691
216161
|
|
215692
216162
|
module.exports = Schema.DEFAULT = new Schema({
|
215693
216163
|
include: [
|
215694
|
-
|
216164
|
+
__nested_webpack_require_888699__(596)
|
215695
216165
|
],
|
215696
216166
|
explicit: [
|
215697
|
-
|
215698
|
-
|
215699
|
-
|
216167
|
+
__nested_webpack_require_888699__(5836),
|
216168
|
+
__nested_webpack_require_888699__(6841),
|
216169
|
+
__nested_webpack_require_888699__(8750)
|
215700
216170
|
]
|
215701
216171
|
});
|
215702
216172
|
|
@@ -215704,7 +216174,7 @@ module.exports = Schema.DEFAULT = new Schema({
|
|
215704
216174
|
/***/ }),
|
215705
216175
|
|
215706
216176
|
/***/ 596:
|
215707
|
-
/***/ ((module, __unused_webpack_exports,
|
216177
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_889393__) => {
|
215708
216178
|
|
215709
216179
|
"use strict";
|
215710
216180
|
// JS-YAML's default schema for `safeLoad` function.
|
@@ -215717,22 +216187,22 @@ module.exports = Schema.DEFAULT = new Schema({
|
|
215717
216187
|
|
215718
216188
|
|
215719
216189
|
|
215720
|
-
var Schema =
|
216190
|
+
var Schema = __nested_webpack_require_889393__(6105);
|
215721
216191
|
|
215722
216192
|
|
215723
216193
|
module.exports = new Schema({
|
215724
216194
|
include: [
|
215725
|
-
|
216195
|
+
__nested_webpack_require_889393__(1112)
|
215726
216196
|
],
|
215727
216197
|
implicit: [
|
215728
|
-
|
215729
|
-
|
216198
|
+
__nested_webpack_require_889393__(7028),
|
216199
|
+
__nested_webpack_require_889393__(7841)
|
215730
216200
|
],
|
215731
216201
|
explicit: [
|
215732
|
-
|
215733
|
-
|
215734
|
-
|
215735
|
-
|
216202
|
+
__nested_webpack_require_889393__(8675),
|
216203
|
+
__nested_webpack_require_889393__(3498),
|
216204
|
+
__nested_webpack_require_889393__(679),
|
216205
|
+
__nested_webpack_require_889393__(7205)
|
215736
216206
|
]
|
215737
216207
|
});
|
215738
216208
|
|
@@ -215740,7 +216210,7 @@ module.exports = new Schema({
|
|
215740
216210
|
/***/ }),
|
215741
216211
|
|
215742
216212
|
/***/ 8441:
|
215743
|
-
/***/ ((module, __unused_webpack_exports,
|
216213
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_890105__) => {
|
215744
216214
|
|
215745
216215
|
"use strict";
|
215746
216216
|
// Standard YAML's Failsafe schema.
|
@@ -215750,14 +216220,14 @@ module.exports = new Schema({
|
|
215750
216220
|
|
215751
216221
|
|
215752
216222
|
|
215753
|
-
var Schema =
|
216223
|
+
var Schema = __nested_webpack_require_890105__(6105);
|
215754
216224
|
|
215755
216225
|
|
215756
216226
|
module.exports = new Schema({
|
215757
216227
|
explicit: [
|
215758
|
-
|
215759
|
-
|
215760
|
-
|
216228
|
+
__nested_webpack_require_890105__(5348),
|
216229
|
+
__nested_webpack_require_890105__(7330),
|
216230
|
+
__nested_webpack_require_890105__(293)
|
215761
216231
|
]
|
215762
216232
|
});
|
215763
216233
|
|
@@ -215765,7 +216235,7 @@ module.exports = new Schema({
|
|
215765
216235
|
/***/ }),
|
215766
216236
|
|
215767
216237
|
/***/ 1486:
|
215768
|
-
/***/ ((module, __unused_webpack_exports,
|
216238
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_890491__) => {
|
215769
216239
|
|
215770
216240
|
"use strict";
|
215771
216241
|
// Standard YAML's JSON schema.
|
@@ -215779,18 +216249,18 @@ module.exports = new Schema({
|
|
215779
216249
|
|
215780
216250
|
|
215781
216251
|
|
215782
|
-
var Schema =
|
216252
|
+
var Schema = __nested_webpack_require_890491__(6105);
|
215783
216253
|
|
215784
216254
|
|
215785
216255
|
module.exports = new Schema({
|
215786
216256
|
include: [
|
215787
|
-
|
216257
|
+
__nested_webpack_require_890491__(8441)
|
215788
216258
|
],
|
215789
216259
|
implicit: [
|
215790
|
-
|
215791
|
-
|
215792
|
-
|
215793
|
-
|
216260
|
+
__nested_webpack_require_890491__(9074),
|
216261
|
+
__nested_webpack_require_890491__(4308),
|
216262
|
+
__nested_webpack_require_890491__(1167),
|
216263
|
+
__nested_webpack_require_890491__(7862)
|
215794
216264
|
]
|
215795
216265
|
});
|
215796
216266
|
|
@@ -215798,12 +216268,12 @@ module.exports = new Schema({
|
|
215798
216268
|
/***/ }),
|
215799
216269
|
|
215800
216270
|
/***/ 6876:
|
215801
|
-
/***/ ((module, __unused_webpack_exports,
|
216271
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_891189__) => {
|
215802
216272
|
|
215803
216273
|
"use strict";
|
215804
216274
|
|
215805
216275
|
|
215806
|
-
var YAMLException =
|
216276
|
+
var YAMLException = __nested_webpack_require_891189__(3237);
|
215807
216277
|
|
215808
216278
|
var TYPE_CONSTRUCTOR_OPTIONS = [
|
215809
216279
|
'kind',
|
@@ -215867,7 +216337,7 @@ module.exports = Type;
|
|
215867
216337
|
/***/ }),
|
215868
216338
|
|
215869
216339
|
/***/ 8675:
|
215870
|
-
/***/ ((module, __unused_webpack_exports,
|
216340
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_892873__) => {
|
215871
216341
|
|
215872
216342
|
"use strict";
|
215873
216343
|
|
@@ -215882,7 +216352,7 @@ try {
|
|
215882
216352
|
NodeBuffer = _require('buffer').Buffer;
|
215883
216353
|
} catch (__) {}
|
215884
216354
|
|
215885
|
-
var Type =
|
216355
|
+
var Type = __nested_webpack_require_892873__(6876);
|
215886
216356
|
|
215887
216357
|
|
215888
216358
|
// [ 64, 65, 66 ] -> [ padding, CR, LF ]
|
@@ -216013,12 +216483,12 @@ module.exports = new Type('tag:yaml.org,2002:binary', {
|
|
216013
216483
|
/***/ }),
|
216014
216484
|
|
216015
216485
|
/***/ 4308:
|
216016
|
-
/***/ ((module, __unused_webpack_exports,
|
216486
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_896265__) => {
|
216017
216487
|
|
216018
216488
|
"use strict";
|
216019
216489
|
|
216020
216490
|
|
216021
|
-
var Type =
|
216491
|
+
var Type = __nested_webpack_require_896265__(6876);
|
216022
216492
|
|
216023
216493
|
function resolveYamlBoolean(data) {
|
216024
216494
|
if (data === null) return false;
|
@@ -216056,13 +216526,13 @@ module.exports = new Type('tag:yaml.org,2002:bool', {
|
|
216056
216526
|
/***/ }),
|
216057
216527
|
|
216058
216528
|
/***/ 7862:
|
216059
|
-
/***/ ((module, __unused_webpack_exports,
|
216529
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_897338__) => {
|
216060
216530
|
|
216061
216531
|
"use strict";
|
216062
216532
|
|
216063
216533
|
|
216064
|
-
var common =
|
216065
|
-
var Type =
|
216534
|
+
var common = __nested_webpack_require_897338__(903);
|
216535
|
+
var Type = __nested_webpack_require_897338__(6876);
|
216066
216536
|
|
216067
216537
|
var YAML_FLOAT_PATTERN = new RegExp(
|
216068
216538
|
// 2.5e4, 2.5 and integers
|
@@ -216180,13 +216650,13 @@ module.exports = new Type('tag:yaml.org,2002:float', {
|
|
216180
216650
|
/***/ }),
|
216181
216651
|
|
216182
216652
|
/***/ 1167:
|
216183
|
-
/***/ ((module, __unused_webpack_exports,
|
216653
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_900284__) => {
|
216184
216654
|
|
216185
216655
|
"use strict";
|
216186
216656
|
|
216187
216657
|
|
216188
|
-
var common =
|
216189
|
-
var Type =
|
216658
|
+
var common = __nested_webpack_require_900284__(903);
|
216659
|
+
var Type = __nested_webpack_require_900284__(6876);
|
216190
216660
|
|
216191
216661
|
function isHexCode(c) {
|
216192
216662
|
return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) ||
|
@@ -216361,7 +216831,7 @@ module.exports = new Type('tag:yaml.org,2002:int', {
|
|
216361
216831
|
/***/ }),
|
216362
216832
|
|
216363
216833
|
/***/ 8750:
|
216364
|
-
/***/ ((module, __unused_webpack_exports,
|
216834
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_904456__) => {
|
216365
216835
|
|
216366
216836
|
"use strict";
|
216367
216837
|
|
@@ -216384,7 +216854,7 @@ try {
|
|
216384
216854
|
if (typeof window !== 'undefined') esprima = window.esprima;
|
216385
216855
|
}
|
216386
216856
|
|
216387
|
-
var Type =
|
216857
|
+
var Type = __nested_webpack_require_904456__(6876);
|
216388
216858
|
|
216389
216859
|
function resolveJavascriptFunction(data) {
|
216390
216860
|
if (data === null) return false;
|
@@ -216461,12 +216931,12 @@ module.exports = new Type('tag:yaml.org,2002:js/function', {
|
|
216461
216931
|
/***/ }),
|
216462
216932
|
|
216463
216933
|
/***/ 6841:
|
216464
|
-
/***/ ((module, __unused_webpack_exports,
|
216934
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_907353__) => {
|
216465
216935
|
|
216466
216936
|
"use strict";
|
216467
216937
|
|
216468
216938
|
|
216469
|
-
var Type =
|
216939
|
+
var Type = __nested_webpack_require_907353__(6876);
|
216470
216940
|
|
216471
216941
|
function resolveJavascriptRegExp(data) {
|
216472
216942
|
if (data === null) return false;
|
@@ -216529,12 +216999,12 @@ module.exports = new Type('tag:yaml.org,2002:js/regexp', {
|
|
216529
216999
|
/***/ }),
|
216530
217000
|
|
216531
217001
|
/***/ 5836:
|
216532
|
-
/***/ ((module, __unused_webpack_exports,
|
217002
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_909024__) => {
|
216533
217003
|
|
216534
217004
|
"use strict";
|
216535
217005
|
|
216536
217006
|
|
216537
|
-
var Type =
|
217007
|
+
var Type = __nested_webpack_require_909024__(6876);
|
216538
217008
|
|
216539
217009
|
function resolveJavascriptUndefined() {
|
216540
217010
|
return true;
|
@@ -216565,12 +217035,12 @@ module.exports = new Type('tag:yaml.org,2002:js/undefined', {
|
|
216565
217035
|
/***/ }),
|
216566
217036
|
|
216567
217037
|
/***/ 293:
|
216568
|
-
/***/ ((module, __unused_webpack_exports,
|
217038
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_909695__) => {
|
216569
217039
|
|
216570
217040
|
"use strict";
|
216571
217041
|
|
216572
217042
|
|
216573
|
-
var Type =
|
217043
|
+
var Type = __nested_webpack_require_909695__(6876);
|
216574
217044
|
|
216575
217045
|
module.exports = new Type('tag:yaml.org,2002:map', {
|
216576
217046
|
kind: 'mapping',
|
@@ -216581,12 +217051,12 @@ module.exports = new Type('tag:yaml.org,2002:map', {
|
|
216581
217051
|
/***/ }),
|
216582
217052
|
|
216583
217053
|
/***/ 7841:
|
216584
|
-
/***/ ((module, __unused_webpack_exports,
|
217054
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_909987__) => {
|
216585
217055
|
|
216586
217056
|
"use strict";
|
216587
217057
|
|
216588
217058
|
|
216589
|
-
var Type =
|
217059
|
+
var Type = __nested_webpack_require_909987__(6876);
|
216590
217060
|
|
216591
217061
|
function resolveYamlMerge(data) {
|
216592
217062
|
return data === '<<' || data === null;
|
@@ -216601,12 +217071,12 @@ module.exports = new Type('tag:yaml.org,2002:merge', {
|
|
216601
217071
|
/***/ }),
|
216602
217072
|
|
216603
217073
|
/***/ 9074:
|
216604
|
-
/***/ ((module, __unused_webpack_exports,
|
217074
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_910319__) => {
|
216605
217075
|
|
216606
217076
|
"use strict";
|
216607
217077
|
|
216608
217078
|
|
216609
|
-
var Type =
|
217079
|
+
var Type = __nested_webpack_require_910319__(6876);
|
216610
217080
|
|
216611
217081
|
function resolveYamlNull(data) {
|
216612
217082
|
if (data === null) return true;
|
@@ -216643,12 +217113,12 @@ module.exports = new Type('tag:yaml.org,2002:null', {
|
|
216643
217113
|
/***/ }),
|
216644
217114
|
|
216645
217115
|
/***/ 3498:
|
216646
|
-
/***/ ((module, __unused_webpack_exports,
|
217116
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_911182__) => {
|
216647
217117
|
|
216648
217118
|
"use strict";
|
216649
217119
|
|
216650
217120
|
|
216651
|
-
var Type =
|
217121
|
+
var Type = __nested_webpack_require_911182__(6876);
|
216652
217122
|
|
216653
217123
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
216654
217124
|
var _toString = Object.prototype.toString;
|
@@ -216695,12 +217165,12 @@ module.exports = new Type('tag:yaml.org,2002:omap', {
|
|
216695
217165
|
/***/ }),
|
216696
217166
|
|
216697
217167
|
/***/ 679:
|
216698
|
-
/***/ ((module, __unused_webpack_exports,
|
217168
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_912306__) => {
|
216699
217169
|
|
216700
217170
|
"use strict";
|
216701
217171
|
|
216702
217172
|
|
216703
|
-
var Type =
|
217173
|
+
var Type = __nested_webpack_require_912306__(6876);
|
216704
217174
|
|
216705
217175
|
var _toString = Object.prototype.toString;
|
216706
217176
|
|
@@ -216756,12 +217226,12 @@ module.exports = new Type('tag:yaml.org,2002:pairs', {
|
|
216756
217226
|
/***/ }),
|
216757
217227
|
|
216758
217228
|
/***/ 7330:
|
216759
|
-
/***/ ((module, __unused_webpack_exports,
|
217229
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_913492__) => {
|
216760
217230
|
|
216761
217231
|
"use strict";
|
216762
217232
|
|
216763
217233
|
|
216764
|
-
var Type =
|
217234
|
+
var Type = __nested_webpack_require_913492__(6876);
|
216765
217235
|
|
216766
217236
|
module.exports = new Type('tag:yaml.org,2002:seq', {
|
216767
217237
|
kind: 'sequence',
|
@@ -216772,12 +217242,12 @@ module.exports = new Type('tag:yaml.org,2002:seq', {
|
|
216772
217242
|
/***/ }),
|
216773
217243
|
|
216774
217244
|
/***/ 7205:
|
216775
|
-
/***/ ((module, __unused_webpack_exports,
|
217245
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_913785__) => {
|
216776
217246
|
|
216777
217247
|
"use strict";
|
216778
217248
|
|
216779
217249
|
|
216780
|
-
var Type =
|
217250
|
+
var Type = __nested_webpack_require_913785__(6876);
|
216781
217251
|
|
216782
217252
|
var _hasOwnProperty = Object.prototype.hasOwnProperty;
|
216783
217253
|
|
@@ -216809,12 +217279,12 @@ module.exports = new Type('tag:yaml.org,2002:set', {
|
|
216809
217279
|
/***/ }),
|
216810
217280
|
|
216811
217281
|
/***/ 5348:
|
216812
|
-
/***/ ((module, __unused_webpack_exports,
|
217282
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_914434__) => {
|
216813
217283
|
|
216814
217284
|
"use strict";
|
216815
217285
|
|
216816
217286
|
|
216817
|
-
var Type =
|
217287
|
+
var Type = __nested_webpack_require_914434__(6876);
|
216818
217288
|
|
216819
217289
|
module.exports = new Type('tag:yaml.org,2002:str', {
|
216820
217290
|
kind: 'scalar',
|
@@ -216825,12 +217295,12 @@ module.exports = new Type('tag:yaml.org,2002:str', {
|
|
216825
217295
|
/***/ }),
|
216826
217296
|
|
216827
217297
|
/***/ 7028:
|
216828
|
-
/***/ ((module, __unused_webpack_exports,
|
217298
|
+
/***/ ((module, __unused_webpack_exports, __nested_webpack_require_914725__) => {
|
216829
217299
|
|
216830
217300
|
"use strict";
|
216831
217301
|
|
216832
217302
|
|
216833
|
-
var Type =
|
217303
|
+
var Type = __nested_webpack_require_914725__(6876);
|
216834
217304
|
|
216835
217305
|
var YAML_DATE_REGEXP = new RegExp(
|
216836
217306
|
'^([0-9][0-9][0-9][0-9])' + // [1] year
|
@@ -216921,7 +217391,7 @@ module.exports = new Type('tag:yaml.org,2002:timestamp', {
|
|
216921
217391
|
/***/ }),
|
216922
217392
|
|
216923
217393
|
/***/ 7276:
|
216924
|
-
/***/ (function(__unused_webpack_module, exports,
|
217394
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_917406__) {
|
216925
217395
|
|
216926
217396
|
"use strict";
|
216927
217397
|
|
@@ -216930,39 +217400,60 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
216930
217400
|
};
|
216931
217401
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
216932
217402
|
exports.updateRoutesManifest = exports.updateFunctionsManifest = exports.convertRuntimeToPlugin = void 0;
|
216933
|
-
const fs_extra_1 = __importDefault(
|
216934
|
-
const path_1 =
|
216935
|
-
const glob_1 = __importDefault(
|
216936
|
-
const normalize_path_1 =
|
216937
|
-
const lambda_1 =
|
216938
|
-
const
|
217403
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_917406__(5392));
|
217404
|
+
const path_1 = __nested_webpack_require_917406__(5622);
|
217405
|
+
const glob_1 = __importDefault(__nested_webpack_require_917406__(4240));
|
217406
|
+
const normalize_path_1 = __nested_webpack_require_917406__(6261);
|
217407
|
+
const lambda_1 = __nested_webpack_require_917406__(6721);
|
217408
|
+
const _1 = __nested_webpack_require_917406__(2855);
|
216939
217409
|
/**
|
216940
217410
|
* Convert legacy Runtime to a Plugin.
|
216941
217411
|
* @param buildRuntime - a legacy build() function from a Runtime
|
217412
|
+
* @param packageName - the name of the package, for example `vercel-plugin-python`
|
216942
217413
|
* @param ext - the file extension, for example `.py`
|
216943
217414
|
*/
|
216944
|
-
function convertRuntimeToPlugin(buildRuntime, ext) {
|
217415
|
+
function convertRuntimeToPlugin(buildRuntime, packageName, ext) {
|
216945
217416
|
// This `build()` signature should match `plugin.build()` signature in `vercel build`.
|
216946
|
-
return async function build({
|
217417
|
+
return async function build({ workPath }) {
|
216947
217418
|
const opts = { cwd: workPath };
|
216948
217419
|
const files = await glob_1.default('**', opts);
|
216949
|
-
|
216950
|
-
|
217420
|
+
// `.output` was already created by the Build Command, so we have
|
217421
|
+
// to ensure its contents don't get bundled into the Lambda. Similarily,
|
217422
|
+
// we don't want to bundle anything from `.vercel` either. Lastly,
|
217423
|
+
// Builders/Runtimes didn't have `vercel.json` or `now.json`.
|
217424
|
+
const ignoredPaths = ['.output', '.vercel', 'vercel.json', 'now.json'];
|
217425
|
+
// We also don't want to provide any files to Runtimes that were ignored
|
217426
|
+
// through `.vercelignore` or `.nowignore`, because the Build Step does the same.
|
217427
|
+
const ignoreFilter = await _1.getIgnoreFilter(workPath);
|
217428
|
+
// We're not passing this as an `ignore` filter to the `glob` function above,
|
217429
|
+
// so that we can re-use exactly the same `getIgnoreFilter` method that the
|
217430
|
+
// Build Step uses (literally the same code).
|
217431
|
+
for (const file in files) {
|
217432
|
+
const isNative = ignoredPaths.some(item => {
|
217433
|
+
return file.startsWith(item);
|
217434
|
+
});
|
217435
|
+
if (isNative || ignoreFilter(file)) {
|
217436
|
+
delete files[file];
|
217437
|
+
}
|
217438
|
+
}
|
217439
|
+
const entrypointPattern = `api/**/*${ext}`;
|
217440
|
+
const entrypoints = await glob_1.default(entrypointPattern, opts);
|
216951
217441
|
const pages = {};
|
216952
|
-
const
|
216953
|
-
const traceDir = path_1.join(workPath,
|
217442
|
+
const pluginName = packageName.replace('vercel-plugin-', '');
|
217443
|
+
const traceDir = path_1.join(workPath, `.output`, `inputs`,
|
217444
|
+
// Legacy Runtimes can only provide API Routes, so that's
|
217445
|
+
// why we can use this prefix for all of them. Here, we have to
|
217446
|
+
// make sure to not use a cryptic hash name, because people
|
217447
|
+
// need to be able to easily inspect the output.
|
217448
|
+
`api-routes-${pluginName}`);
|
216954
217449
|
await fs_extra_1.default.ensureDir(traceDir);
|
216955
217450
|
for (const entrypoint of Object.keys(entrypoints)) {
|
216956
|
-
const key = Object.keys(functions).find(src => src === entrypoint || minimatch_1.default(entrypoint, src)) || '';
|
216957
|
-
const config = functions[key] || {};
|
216958
217451
|
const { output } = await buildRuntime({
|
216959
217452
|
files,
|
216960
217453
|
entrypoint,
|
216961
217454
|
workPath,
|
216962
217455
|
config: {
|
216963
217456
|
zeroConfig: true,
|
216964
|
-
includeFiles: config.includeFiles,
|
216965
|
-
excludeFiles: config.excludeFiles,
|
216966
217457
|
},
|
216967
217458
|
meta: {
|
216968
217459
|
avoidTopLevelInstall: true,
|
@@ -216975,7 +217466,6 @@ function convertRuntimeToPlugin(buildRuntime, ext) {
|
|
216975
217466
|
maxDuration: output.maxDuration,
|
216976
217467
|
environment: output.environment,
|
216977
217468
|
allowQuery: output.allowQuery,
|
216978
|
-
//regions: output.regions,
|
216979
217469
|
};
|
216980
217470
|
// @ts-ignore This symbol is a private API
|
216981
217471
|
const lambdaFiles = output[lambda_1.FILES_SYMBOL];
|
@@ -217008,7 +217498,7 @@ function convertRuntimeToPlugin(buildRuntime, ext) {
|
|
217008
217498
|
await fs_extra_1.default.ensureDir(path_1.dirname(nft));
|
217009
217499
|
await fs_extra_1.default.writeFile(nft, json);
|
217010
217500
|
}
|
217011
|
-
await updateFunctionsManifest({
|
217501
|
+
await updateFunctionsManifest({ workPath, pages });
|
217012
217502
|
};
|
217013
217503
|
}
|
217014
217504
|
exports.convertRuntimeToPlugin = convertRuntimeToPlugin;
|
@@ -217036,10 +217526,9 @@ async function readJson(filePath) {
|
|
217036
217526
|
}
|
217037
217527
|
/**
|
217038
217528
|
* If `.output/functions-manifest.json` exists, append to the pages
|
217039
|
-
* property. Otherwise write a new file.
|
217040
|
-
* and apply relevant `functions` property config.
|
217529
|
+
* property. Otherwise write a new file.
|
217041
217530
|
*/
|
217042
|
-
async function updateFunctionsManifest({
|
217531
|
+
async function updateFunctionsManifest({ workPath, pages, }) {
|
217043
217532
|
const functionsManifestPath = path_1.join(workPath, '.output', 'functions-manifest.json');
|
217044
217533
|
const functionsManifest = await readJson(functionsManifestPath);
|
217045
217534
|
if (!functionsManifest.version)
|
@@ -217047,16 +217536,7 @@ async function updateFunctionsManifest({ vercelConfig, workPath, pages, }) {
|
|
217047
217536
|
if (!functionsManifest.pages)
|
217048
217537
|
functionsManifest.pages = {};
|
217049
217538
|
for (const [pageKey, pageConfig] of Object.entries(pages)) {
|
217050
|
-
|
217051
|
-
sourceFile: pageKey,
|
217052
|
-
config: vercelConfig,
|
217053
|
-
});
|
217054
|
-
functionsManifest.pages[pageKey] = {
|
217055
|
-
...pageConfig,
|
217056
|
-
memory: fnConfig.memory || pageConfig.memory,
|
217057
|
-
maxDuration: fnConfig.maxDuration || pageConfig.maxDuration,
|
217058
|
-
regions: vercelConfig.regions || pageConfig.regions,
|
217059
|
-
};
|
217539
|
+
functionsManifest.pages[pageKey] = { ...pageConfig };
|
217060
217540
|
}
|
217061
217541
|
await fs_extra_1.default.writeFile(functionsManifestPath, JSON.stringify(functionsManifest));
|
217062
217542
|
}
|
@@ -217105,12 +217585,12 @@ exports.updateRoutesManifest = updateRoutesManifest;
|
|
217105
217585
|
/***/ }),
|
217106
217586
|
|
217107
217587
|
/***/ 1868:
|
217108
|
-
/***/ ((__unused_webpack_module, exports,
|
217588
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_925701__) => {
|
217109
217589
|
|
217110
217590
|
"use strict";
|
217111
217591
|
|
217112
217592
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217113
|
-
const _1 =
|
217593
|
+
const _1 = __nested_webpack_require_925701__(2855);
|
217114
217594
|
function debug(message, ...additional) {
|
217115
217595
|
if (_1.getPlatformEnv('BUILDER_DEBUG')) {
|
217116
217596
|
console.log(message, ...additional);
|
@@ -217122,7 +217602,7 @@ exports.default = debug;
|
|
217122
217602
|
/***/ }),
|
217123
217603
|
|
217124
217604
|
/***/ 4246:
|
217125
|
-
/***/ (function(__unused_webpack_module, exports,
|
217605
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_926086__) {
|
217126
217606
|
|
217127
217607
|
"use strict";
|
217128
217608
|
|
@@ -217131,11 +217611,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
217131
217611
|
};
|
217132
217612
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
217133
217613
|
exports.detectBuilders = exports.detectOutputDirectory = exports.detectApiDirectory = exports.detectApiExtensions = exports.sortFiles = void 0;
|
217134
|
-
const minimatch_1 = __importDefault(
|
217135
|
-
const semver_1 =
|
217136
|
-
const path_1 =
|
217137
|
-
const frameworks_1 = __importDefault(
|
217138
|
-
const _1 =
|
217614
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_926086__(9566));
|
217615
|
+
const semver_1 = __nested_webpack_require_926086__(2879);
|
217616
|
+
const path_1 = __nested_webpack_require_926086__(5622);
|
217617
|
+
const frameworks_1 = __importDefault(__nested_webpack_require_926086__(8438));
|
217618
|
+
const _1 = __nested_webpack_require_926086__(2855);
|
217139
217619
|
const slugToFramework = new Map(frameworks_1.default.map(f => [f.slug, f]));
|
217140
217620
|
// We need to sort the file paths by alphabet to make
|
217141
217621
|
// sure the routes stay in the same order e.g. for deduping
|
@@ -218194,7 +218674,7 @@ function getSuggestion(topLevelProp, additionalProperty) {
|
|
218194
218674
|
/***/ }),
|
218195
218675
|
|
218196
218676
|
/***/ 2397:
|
218197
|
-
/***/ (function(__unused_webpack_module, exports,
|
218677
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_965470__) {
|
218198
218678
|
|
218199
218679
|
"use strict";
|
218200
218680
|
|
@@ -218202,8 +218682,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218202
218682
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218203
218683
|
};
|
218204
218684
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218205
|
-
const assert_1 = __importDefault(
|
218206
|
-
const into_stream_1 = __importDefault(
|
218685
|
+
const assert_1 = __importDefault(__nested_webpack_require_965470__(2357));
|
218686
|
+
const into_stream_1 = __importDefault(__nested_webpack_require_965470__(6130));
|
218207
218687
|
class FileBlob {
|
218208
218688
|
constructor({ mode = 0o100644, contentType, data }) {
|
218209
218689
|
assert_1.default(typeof mode === 'number');
|
@@ -218235,7 +218715,7 @@ exports.default = FileBlob;
|
|
218235
218715
|
/***/ }),
|
218236
218716
|
|
218237
218717
|
/***/ 9331:
|
218238
|
-
/***/ (function(__unused_webpack_module, exports,
|
218718
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_966922__) {
|
218239
218719
|
|
218240
218720
|
"use strict";
|
218241
218721
|
|
@@ -218243,11 +218723,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218243
218723
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218244
218724
|
};
|
218245
218725
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218246
|
-
const assert_1 = __importDefault(
|
218247
|
-
const fs_extra_1 = __importDefault(
|
218248
|
-
const multistream_1 = __importDefault(
|
218249
|
-
const path_1 = __importDefault(
|
218250
|
-
const async_sema_1 = __importDefault(
|
218726
|
+
const assert_1 = __importDefault(__nested_webpack_require_966922__(2357));
|
218727
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_966922__(5392));
|
218728
|
+
const multistream_1 = __importDefault(__nested_webpack_require_966922__(8179));
|
218729
|
+
const path_1 = __importDefault(__nested_webpack_require_966922__(5622));
|
218730
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_966922__(5758));
|
218251
218731
|
const semaToPreventEMFILE = new async_sema_1.default(20);
|
218252
218732
|
class FileFsRef {
|
218253
218733
|
constructor({ mode = 0o100644, contentType, fsPath }) {
|
@@ -218313,7 +218793,7 @@ exports.default = FileFsRef;
|
|
218313
218793
|
/***/ }),
|
218314
218794
|
|
218315
218795
|
/***/ 5187:
|
218316
|
-
/***/ (function(__unused_webpack_module, exports,
|
218796
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_969726__) {
|
218317
218797
|
|
218318
218798
|
"use strict";
|
218319
218799
|
|
@@ -218321,11 +218801,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218321
218801
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218322
218802
|
};
|
218323
218803
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218324
|
-
const assert_1 = __importDefault(
|
218325
|
-
const node_fetch_1 = __importDefault(
|
218326
|
-
const multistream_1 = __importDefault(
|
218327
|
-
const async_retry_1 = __importDefault(
|
218328
|
-
const async_sema_1 = __importDefault(
|
218804
|
+
const assert_1 = __importDefault(__nested_webpack_require_969726__(2357));
|
218805
|
+
const node_fetch_1 = __importDefault(__nested_webpack_require_969726__(2197));
|
218806
|
+
const multistream_1 = __importDefault(__nested_webpack_require_969726__(8179));
|
218807
|
+
const async_retry_1 = __importDefault(__nested_webpack_require_969726__(3691));
|
218808
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_969726__(5758));
|
218329
218809
|
const semaToDownloadFromS3 = new async_sema_1.default(5);
|
218330
218810
|
class BailableError extends Error {
|
218331
218811
|
constructor(...args) {
|
@@ -218406,7 +218886,7 @@ exports.default = FileRef;
|
|
218406
218886
|
/***/ }),
|
218407
218887
|
|
218408
218888
|
/***/ 1611:
|
218409
|
-
/***/ (function(__unused_webpack_module, exports,
|
218889
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_973127__) {
|
218410
218890
|
|
218411
218891
|
"use strict";
|
218412
218892
|
|
@@ -218415,10 +218895,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218415
218895
|
};
|
218416
218896
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218417
218897
|
exports.isSymbolicLink = void 0;
|
218418
|
-
const path_1 = __importDefault(
|
218419
|
-
const debug_1 = __importDefault(
|
218420
|
-
const file_fs_ref_1 = __importDefault(
|
218421
|
-
const fs_extra_1 =
|
218898
|
+
const path_1 = __importDefault(__nested_webpack_require_973127__(5622));
|
218899
|
+
const debug_1 = __importDefault(__nested_webpack_require_973127__(1868));
|
218900
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_973127__(9331));
|
218901
|
+
const fs_extra_1 = __nested_webpack_require_973127__(5392);
|
218422
218902
|
const S_IFMT = 61440; /* 0170000 type of file */
|
218423
218903
|
const S_IFLNK = 40960; /* 0120000 symbolic link */
|
218424
218904
|
function isSymbolicLink(mode) {
|
@@ -218480,14 +218960,14 @@ exports.default = download;
|
|
218480
218960
|
/***/ }),
|
218481
218961
|
|
218482
218962
|
/***/ 3838:
|
218483
|
-
/***/ ((__unused_webpack_module, exports,
|
218963
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_975952__) => {
|
218484
218964
|
|
218485
218965
|
"use strict";
|
218486
218966
|
|
218487
218967
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218488
|
-
const path_1 =
|
218489
|
-
const os_1 =
|
218490
|
-
const fs_extra_1 =
|
218968
|
+
const path_1 = __nested_webpack_require_975952__(5622);
|
218969
|
+
const os_1 = __nested_webpack_require_975952__(2087);
|
218970
|
+
const fs_extra_1 = __nested_webpack_require_975952__(5392);
|
218491
218971
|
async function getWritableDirectory() {
|
218492
218972
|
const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
|
218493
218973
|
const directory = path_1.join(os_1.tmpdir(), name);
|
@@ -218500,7 +218980,7 @@ exports.default = getWritableDirectory;
|
|
218500
218980
|
/***/ }),
|
218501
218981
|
|
218502
218982
|
/***/ 4240:
|
218503
|
-
/***/ (function(__unused_webpack_module, exports,
|
218983
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_976532__) {
|
218504
218984
|
|
218505
218985
|
"use strict";
|
218506
218986
|
|
@@ -218508,13 +218988,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218508
218988
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
218509
218989
|
};
|
218510
218990
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218511
|
-
const path_1 = __importDefault(
|
218512
|
-
const assert_1 = __importDefault(
|
218513
|
-
const glob_1 = __importDefault(
|
218514
|
-
const util_1 =
|
218515
|
-
const fs_extra_1 =
|
218516
|
-
const normalize_path_1 =
|
218517
|
-
const file_fs_ref_1 = __importDefault(
|
218991
|
+
const path_1 = __importDefault(__nested_webpack_require_976532__(5622));
|
218992
|
+
const assert_1 = __importDefault(__nested_webpack_require_976532__(2357));
|
218993
|
+
const glob_1 = __importDefault(__nested_webpack_require_976532__(1104));
|
218994
|
+
const util_1 = __nested_webpack_require_976532__(1669);
|
218995
|
+
const fs_extra_1 = __nested_webpack_require_976532__(5392);
|
218996
|
+
const normalize_path_1 = __nested_webpack_require_976532__(6261);
|
218997
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_976532__(9331));
|
218518
218998
|
const vanillaGlob = util_1.promisify(glob_1.default);
|
218519
218999
|
async function glob(pattern, opts, mountpoint) {
|
218520
219000
|
let options;
|
@@ -218560,7 +219040,7 @@ exports.default = glob;
|
|
218560
219040
|
/***/ }),
|
218561
219041
|
|
218562
219042
|
/***/ 7903:
|
218563
|
-
/***/ (function(__unused_webpack_module, exports,
|
219043
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_978728__) {
|
218564
219044
|
|
218565
219045
|
"use strict";
|
218566
219046
|
|
@@ -218569,9 +219049,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218569
219049
|
};
|
218570
219050
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218571
219051
|
exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
|
218572
|
-
const semver_1 =
|
218573
|
-
const errors_1 =
|
218574
|
-
const debug_1 = __importDefault(
|
219052
|
+
const semver_1 = __nested_webpack_require_978728__(2879);
|
219053
|
+
const errors_1 = __nested_webpack_require_978728__(3983);
|
219054
|
+
const debug_1 = __importDefault(__nested_webpack_require_978728__(1868));
|
218575
219055
|
const allOptions = [
|
218576
219056
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
218577
219057
|
{ major: 12, range: '12.x', runtime: 'nodejs12.x' },
|
@@ -218665,7 +219145,7 @@ exports.normalizePath = normalizePath;
|
|
218665
219145
|
/***/ }),
|
218666
219146
|
|
218667
219147
|
/***/ 7792:
|
218668
|
-
/***/ (function(__unused_webpack_module, exports,
|
219148
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_982596__) {
|
218669
219149
|
|
218670
219150
|
"use strict";
|
218671
219151
|
|
@@ -218674,9 +219154,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218674
219154
|
};
|
218675
219155
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218676
219156
|
exports.readConfigFile = void 0;
|
218677
|
-
const js_yaml_1 = __importDefault(
|
218678
|
-
const toml_1 = __importDefault(
|
218679
|
-
const fs_extra_1 =
|
219157
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_982596__(6540));
|
219158
|
+
const toml_1 = __importDefault(__nested_webpack_require_982596__(9434));
|
219159
|
+
const fs_extra_1 = __nested_webpack_require_982596__(5392);
|
218680
219160
|
async function readFileOrNull(file) {
|
218681
219161
|
try {
|
218682
219162
|
const data = await fs_extra_1.readFile(file);
|
@@ -218731,7 +219211,7 @@ exports.default = rename;
|
|
218731
219211
|
/***/ }),
|
218732
219212
|
|
218733
219213
|
/***/ 1442:
|
218734
|
-
/***/ (function(__unused_webpack_module, exports,
|
219214
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_984389__) {
|
218735
219215
|
|
218736
219216
|
"use strict";
|
218737
219217
|
|
@@ -218740,14 +219220,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
218740
219220
|
};
|
218741
219221
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
218742
219222
|
exports.installDependencies = exports.getScriptName = exports.runPipInstall = exports.runBundleInstall = exports.runPackageJsonScript = exports.runNpmInstall = exports.walkParentDirs = exports.scanParentDirs = exports.getNodeVersion = exports.getSpawnOptions = exports.runShellScript = exports.getNodeBinPath = exports.execCommand = exports.spawnCommand = exports.execAsync = exports.spawnAsync = void 0;
|
218743
|
-
const assert_1 = __importDefault(
|
218744
|
-
const fs_extra_1 = __importDefault(
|
218745
|
-
const path_1 = __importDefault(
|
218746
|
-
const debug_1 = __importDefault(
|
218747
|
-
const cross_spawn_1 = __importDefault(
|
218748
|
-
const util_1 =
|
218749
|
-
const errors_1 =
|
218750
|
-
const node_version_1 =
|
219223
|
+
const assert_1 = __importDefault(__nested_webpack_require_984389__(2357));
|
219224
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_984389__(5392));
|
219225
|
+
const path_1 = __importDefault(__nested_webpack_require_984389__(5622));
|
219226
|
+
const debug_1 = __importDefault(__nested_webpack_require_984389__(1868));
|
219227
|
+
const cross_spawn_1 = __importDefault(__nested_webpack_require_984389__(7618));
|
219228
|
+
const util_1 = __nested_webpack_require_984389__(1669);
|
219229
|
+
const errors_1 = __nested_webpack_require_984389__(3983);
|
219230
|
+
const node_version_1 = __nested_webpack_require_984389__(7903);
|
218751
219231
|
function spawnAsync(command, args, opts = {}) {
|
218752
219232
|
return new Promise((resolve, reject) => {
|
218753
219233
|
const stderrLogs = [];
|
@@ -219058,7 +219538,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
219058
219538
|
/***/ }),
|
219059
219539
|
|
219060
219540
|
/***/ 2560:
|
219061
|
-
/***/ (function(__unused_webpack_module, exports,
|
219541
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_998379__) {
|
219062
219542
|
|
219063
219543
|
"use strict";
|
219064
219544
|
|
@@ -219066,7 +219546,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219066
219546
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219067
219547
|
};
|
219068
219548
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219069
|
-
const end_of_stream_1 = __importDefault(
|
219549
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_998379__(687));
|
219070
219550
|
function streamToBuffer(stream) {
|
219071
219551
|
return new Promise((resolve, reject) => {
|
219072
219552
|
const buffers = [];
|
@@ -219092,10 +219572,77 @@ function streamToBuffer(stream) {
|
|
219092
219572
|
exports.default = streamToBuffer;
|
219093
219573
|
|
219094
219574
|
|
219575
|
+
/***/ }),
|
219576
|
+
|
219577
|
+
/***/ 1148:
|
219578
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_999447__) {
|
219579
|
+
|
219580
|
+
"use strict";
|
219581
|
+
|
219582
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
219583
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219584
|
+
};
|
219585
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219586
|
+
const path_1 = __importDefault(__nested_webpack_require_999447__(5622));
|
219587
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_999447__(5392));
|
219588
|
+
const ignore_1 = __importDefault(__nested_webpack_require_999447__(3556));
|
219589
|
+
function isCodedError(error) {
|
219590
|
+
return (error !== null &&
|
219591
|
+
error !== undefined &&
|
219592
|
+
error.code !== undefined);
|
219593
|
+
}
|
219594
|
+
function clearRelative(s) {
|
219595
|
+
return s.replace(/(\n|^)\.\//g, '$1');
|
219596
|
+
}
|
219597
|
+
async function default_1(downloadPath, rootDirectory) {
|
219598
|
+
const readFile = async (p) => {
|
219599
|
+
try {
|
219600
|
+
return await fs_extra_1.default.readFile(p, 'utf8');
|
219601
|
+
}
|
219602
|
+
catch (error) {
|
219603
|
+
if (error.code === 'ENOENT' ||
|
219604
|
+
(error instanceof Error && error.message.includes('ENOENT'))) {
|
219605
|
+
return undefined;
|
219606
|
+
}
|
219607
|
+
throw error;
|
219608
|
+
}
|
219609
|
+
};
|
219610
|
+
const vercelIgnorePath = path_1.default.join(downloadPath, rootDirectory || '', '.vercelignore');
|
219611
|
+
const nowIgnorePath = path_1.default.join(downloadPath, rootDirectory || '', '.nowignore');
|
219612
|
+
const ignoreContents = [];
|
219613
|
+
try {
|
219614
|
+
ignoreContents.push(...(await Promise.all([readFile(vercelIgnorePath), readFile(nowIgnorePath)])).filter(Boolean));
|
219615
|
+
}
|
219616
|
+
catch (error) {
|
219617
|
+
if (isCodedError(error) && error.code === 'ENOTDIR') {
|
219618
|
+
console.log(`Warning: Cannot read ignore file from ${vercelIgnorePath}`);
|
219619
|
+
}
|
219620
|
+
else {
|
219621
|
+
throw error;
|
219622
|
+
}
|
219623
|
+
}
|
219624
|
+
if (ignoreContents.length === 2) {
|
219625
|
+
throw new Error('Cannot use both a `.vercelignore` and `.nowignore` file. Please delete the `.nowignore` file.');
|
219626
|
+
}
|
219627
|
+
if (ignoreContents.length === 0) {
|
219628
|
+
return () => false;
|
219629
|
+
}
|
219630
|
+
const ignoreFilter = ignore_1.default().add(clearRelative(ignoreContents[0]));
|
219631
|
+
return function (p) {
|
219632
|
+
// we should not ignore now.json and vercel.json if it asked to.
|
219633
|
+
// we depend on these files for building the app with sourceless
|
219634
|
+
if (p === 'now.json' || p === 'vercel.json')
|
219635
|
+
return false;
|
219636
|
+
return ignoreFilter.test(p).ignored;
|
219637
|
+
};
|
219638
|
+
}
|
219639
|
+
exports.default = default_1;
|
219640
|
+
|
219641
|
+
|
219095
219642
|
/***/ }),
|
219096
219643
|
|
219097
219644
|
/***/ 2855:
|
219098
|
-
/***/ (function(__unused_webpack_module, exports,
|
219645
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1001829__) {
|
219099
219646
|
|
219100
219647
|
"use strict";
|
219101
219648
|
|
@@ -219125,29 +219672,30 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219125
219672
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
219126
219673
|
};
|
219127
219674
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219128
|
-
exports.getPlatformEnv = exports.isStaticRuntime = exports.isOfficialRuntime = exports.updateRoutesManifest = exports.updateFunctionsManifest = exports.convertRuntimeToPlugin = exports.normalizePath = exports.readConfigFile = exports.DetectorFilesystem = exports.detectFramework = exports.detectApiExtensions = exports.detectApiDirectory = exports.detectOutputDirectory = exports.detectBuilders = exports.scanParentDirs = exports.getLambdaOptionsFromFunction = exports.isSymbolicLink = exports.debug = exports.shouldServe = exports.streamToBuffer = exports.getSpawnOptions = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = exports.getNodeVersion = exports.runShellScript = exports.runPipInstall = exports.runBundleInstall = exports.runNpmInstall = exports.getNodeBinPath = exports.walkParentDirs = exports.spawnCommand = exports.execCommand = exports.runPackageJsonScript = exports.installDependencies = exports.getScriptName = exports.spawnAsync = exports.execAsync = exports.rename = exports.glob = exports.getWriteableDirectory = exports.download = exports.Prerender = exports.createLambda = exports.Lambda = exports.FileRef = exports.FileFsRef = exports.FileBlob = void 0;
|
219129
|
-
const
|
219675
|
+
exports.getInputHash = exports.getPlatformEnv = exports.isStaticRuntime = exports.isOfficialRuntime = exports.updateRoutesManifest = exports.updateFunctionsManifest = exports.convertRuntimeToPlugin = exports.normalizePath = exports.readConfigFile = exports.DetectorFilesystem = exports.detectFramework = exports.detectApiExtensions = exports.detectApiDirectory = exports.detectOutputDirectory = exports.detectBuilders = exports.getIgnoreFilter = exports.scanParentDirs = exports.getLambdaOptionsFromFunction = exports.isSymbolicLink = exports.debug = exports.shouldServe = exports.streamToBuffer = exports.getSpawnOptions = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = exports.getNodeVersion = exports.runShellScript = exports.runPipInstall = exports.runBundleInstall = exports.runNpmInstall = exports.getNodeBinPath = exports.walkParentDirs = exports.spawnCommand = exports.execCommand = exports.runPackageJsonScript = exports.installDependencies = exports.getScriptName = exports.spawnAsync = exports.execAsync = exports.rename = exports.glob = exports.getWriteableDirectory = exports.download = exports.Prerender = exports.createLambda = exports.Lambda = exports.FileRef = exports.FileFsRef = exports.FileBlob = void 0;
|
219676
|
+
const crypto_1 = __nested_webpack_require_1001829__(6417);
|
219677
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_1001829__(2397));
|
219130
219678
|
exports.FileBlob = file_blob_1.default;
|
219131
|
-
const file_fs_ref_1 = __importDefault(
|
219679
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_1001829__(9331));
|
219132
219680
|
exports.FileFsRef = file_fs_ref_1.default;
|
219133
|
-
const file_ref_1 = __importDefault(
|
219681
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_1001829__(5187));
|
219134
219682
|
exports.FileRef = file_ref_1.default;
|
219135
|
-
const lambda_1 =
|
219683
|
+
const lambda_1 = __nested_webpack_require_1001829__(6721);
|
219136
219684
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
219137
219685
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
219138
219686
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
219139
|
-
const prerender_1 =
|
219687
|
+
const prerender_1 = __nested_webpack_require_1001829__(2850);
|
219140
219688
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
219141
|
-
const download_1 = __importStar(
|
219689
|
+
const download_1 = __importStar(__nested_webpack_require_1001829__(1611));
|
219142
219690
|
exports.download = download_1.default;
|
219143
219691
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
219144
|
-
const get_writable_directory_1 = __importDefault(
|
219692
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_1001829__(3838));
|
219145
219693
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
219146
|
-
const glob_1 = __importDefault(
|
219694
|
+
const glob_1 = __importDefault(__nested_webpack_require_1001829__(4240));
|
219147
219695
|
exports.glob = glob_1.default;
|
219148
|
-
const rename_1 = __importDefault(
|
219696
|
+
const rename_1 = __importDefault(__nested_webpack_require_1001829__(6718));
|
219149
219697
|
exports.rename = rename_1.default;
|
219150
|
-
const run_user_scripts_1 =
|
219698
|
+
const run_user_scripts_1 = __nested_webpack_require_1001829__(1442);
|
219151
219699
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
219152
219700
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
219153
219701
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -219164,36 +219712,38 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
219164
219712
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
219165
219713
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
219166
219714
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
219167
|
-
const node_version_1 =
|
219715
|
+
const node_version_1 = __nested_webpack_require_1001829__(7903);
|
219168
219716
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
219169
219717
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
219170
|
-
const errors_1 =
|
219171
|
-
const stream_to_buffer_1 = __importDefault(
|
219718
|
+
const errors_1 = __nested_webpack_require_1001829__(3983);
|
219719
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1001829__(2560));
|
219172
219720
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
219173
|
-
const should_serve_1 = __importDefault(
|
219721
|
+
const should_serve_1 = __importDefault(__nested_webpack_require_1001829__(2564));
|
219174
219722
|
exports.shouldServe = should_serve_1.default;
|
219175
|
-
const debug_1 = __importDefault(
|
219723
|
+
const debug_1 = __importDefault(__nested_webpack_require_1001829__(1868));
|
219176
219724
|
exports.debug = debug_1.default;
|
219177
|
-
|
219725
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_1001829__(1148));
|
219726
|
+
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
219727
|
+
var detect_builders_1 = __nested_webpack_require_1001829__(4246);
|
219178
219728
|
Object.defineProperty(exports, "detectBuilders", ({ enumerable: true, get: function () { return detect_builders_1.detectBuilders; } }));
|
219179
219729
|
Object.defineProperty(exports, "detectOutputDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectOutputDirectory; } }));
|
219180
219730
|
Object.defineProperty(exports, "detectApiDirectory", ({ enumerable: true, get: function () { return detect_builders_1.detectApiDirectory; } }));
|
219181
219731
|
Object.defineProperty(exports, "detectApiExtensions", ({ enumerable: true, get: function () { return detect_builders_1.detectApiExtensions; } }));
|
219182
|
-
var detect_framework_1 =
|
219732
|
+
var detect_framework_1 = __nested_webpack_require_1001829__(5224);
|
219183
219733
|
Object.defineProperty(exports, "detectFramework", ({ enumerable: true, get: function () { return detect_framework_1.detectFramework; } }));
|
219184
|
-
var filesystem_1 =
|
219734
|
+
var filesystem_1 = __nested_webpack_require_1001829__(461);
|
219185
219735
|
Object.defineProperty(exports, "DetectorFilesystem", ({ enumerable: true, get: function () { return filesystem_1.DetectorFilesystem; } }));
|
219186
|
-
var read_config_file_1 =
|
219736
|
+
var read_config_file_1 = __nested_webpack_require_1001829__(7792);
|
219187
219737
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
219188
|
-
var normalize_path_1 =
|
219738
|
+
var normalize_path_1 = __nested_webpack_require_1001829__(6261);
|
219189
219739
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
219190
|
-
var convert_runtime_to_plugin_1 =
|
219740
|
+
var convert_runtime_to_plugin_1 = __nested_webpack_require_1001829__(7276);
|
219191
219741
|
Object.defineProperty(exports, "convertRuntimeToPlugin", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.convertRuntimeToPlugin; } }));
|
219192
219742
|
Object.defineProperty(exports, "updateFunctionsManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateFunctionsManifest; } }));
|
219193
219743
|
Object.defineProperty(exports, "updateRoutesManifest", ({ enumerable: true, get: function () { return convert_runtime_to_plugin_1.updateRoutesManifest; } }));
|
219194
|
-
__exportStar(
|
219195
|
-
__exportStar(
|
219196
|
-
__exportStar(
|
219744
|
+
__exportStar(__nested_webpack_require_1001829__(2416), exports);
|
219745
|
+
__exportStar(__nested_webpack_require_1001829__(5748), exports);
|
219746
|
+
__exportStar(__nested_webpack_require_1001829__(3983), exports);
|
219197
219747
|
/**
|
219198
219748
|
* Helper function to support both `@vercel` and legacy `@now` official Runtimes.
|
219199
219749
|
*/
|
@@ -219233,12 +219783,20 @@ const getPlatformEnv = (name) => {
|
|
219233
219783
|
return n;
|
219234
219784
|
};
|
219235
219785
|
exports.getPlatformEnv = getPlatformEnv;
|
219786
|
+
/**
|
219787
|
+
* Helper function for generating file or directories names in `.output/inputs`
|
219788
|
+
* for dependencies of files provided to the File System API.
|
219789
|
+
*/
|
219790
|
+
const getInputHash = (source) => {
|
219791
|
+
return crypto_1.createHash('sha1').update(source).digest('hex');
|
219792
|
+
};
|
219793
|
+
exports.getInputHash = getInputHash;
|
219236
219794
|
|
219237
219795
|
|
219238
219796
|
/***/ }),
|
219239
219797
|
|
219240
219798
|
/***/ 6721:
|
219241
|
-
/***/ (function(__unused_webpack_module, exports,
|
219799
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_1012807__) {
|
219242
219800
|
|
219243
219801
|
"use strict";
|
219244
219802
|
|
@@ -219247,13 +219805,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
219247
219805
|
};
|
219248
219806
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219249
219807
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = exports.FILES_SYMBOL = void 0;
|
219250
|
-
const assert_1 = __importDefault(
|
219251
|
-
const async_sema_1 = __importDefault(
|
219252
|
-
const yazl_1 =
|
219253
|
-
const minimatch_1 = __importDefault(
|
219254
|
-
const fs_extra_1 =
|
219255
|
-
const download_1 =
|
219256
|
-
const stream_to_buffer_1 = __importDefault(
|
219808
|
+
const assert_1 = __importDefault(__nested_webpack_require_1012807__(2357));
|
219809
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_1012807__(5758));
|
219810
|
+
const yazl_1 = __nested_webpack_require_1012807__(1223);
|
219811
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_1012807__(9566));
|
219812
|
+
const fs_extra_1 = __nested_webpack_require_1012807__(5392);
|
219813
|
+
const download_1 = __nested_webpack_require_1012807__(1611);
|
219814
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_1012807__(2560));
|
219257
219815
|
exports.FILES_SYMBOL = Symbol('files');
|
219258
219816
|
class Lambda {
|
219259
219817
|
constructor({ zipBuffer, handler, runtime, maxDuration, memory, environment, allowQuery, regions, }) {
|
@@ -219482,12 +220040,12 @@ exports.buildsSchema = {
|
|
219482
220040
|
/***/ }),
|
219483
220041
|
|
219484
220042
|
/***/ 2564:
|
219485
|
-
/***/ ((__unused_webpack_module, exports,
|
220043
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_1021317__) => {
|
219486
220044
|
|
219487
220045
|
"use strict";
|
219488
220046
|
|
219489
220047
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
219490
|
-
const path_1 =
|
220048
|
+
const path_1 = __nested_webpack_require_1021317__(5622);
|
219491
220049
|
function shouldServe({ entrypoint, files, requestPath, }) {
|
219492
220050
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
219493
220051
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -219622,6 +220180,14 @@ module.exports = __webpack_require__(27619);
|
|
219622
220180
|
|
219623
220181
|
/***/ }),
|
219624
220182
|
|
220183
|
+
/***/ 6417:
|
220184
|
+
/***/ ((module) => {
|
220185
|
+
|
220186
|
+
"use strict";
|
220187
|
+
module.exports = __webpack_require__(76417);
|
220188
|
+
|
220189
|
+
/***/ }),
|
220190
|
+
|
219625
220191
|
/***/ 8614:
|
219626
220192
|
/***/ ((module) => {
|
219627
220193
|
|
@@ -219716,7 +220282,7 @@ module.exports = __webpack_require__(78761);
|
|
219716
220282
|
/******/ var __webpack_module_cache__ = {};
|
219717
220283
|
/******/
|
219718
220284
|
/******/ // The require function
|
219719
|
-
/******/ function
|
220285
|
+
/******/ function __nested_webpack_require_1121052__(moduleId) {
|
219720
220286
|
/******/ // Check if module is in cache
|
219721
220287
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
219722
220288
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -219731,7 +220297,7 @@ module.exports = __webpack_require__(78761);
|
|
219731
220297
|
/******/ // Execute the module function
|
219732
220298
|
/******/ var threw = true;
|
219733
220299
|
/******/ try {
|
219734
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
220300
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1121052__);
|
219735
220301
|
/******/ threw = false;
|
219736
220302
|
/******/ } finally {
|
219737
220303
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -219744,11 +220310,11 @@ module.exports = __webpack_require__(78761);
|
|
219744
220310
|
/************************************************************************/
|
219745
220311
|
/******/ /* webpack/runtime/compat */
|
219746
220312
|
/******/
|
219747
|
-
/******/
|
220313
|
+
/******/ __nested_webpack_require_1121052__.ab = __dirname + "/";/************************************************************************/
|
219748
220314
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
219749
220315
|
/******/ // startup
|
219750
220316
|
/******/ // Load entry module and return exports
|
219751
|
-
/******/ return
|
220317
|
+
/******/ return __nested_webpack_require_1121052__(2855);
|
219752
220318
|
/******/ })()
|
219753
220319
|
;
|
219754
220320
|
|
@@ -249922,6 +250488,8 @@ async function main(client) {
|
|
249922
250488
|
}
|
249923
250489
|
}
|
249924
250490
|
}
|
250491
|
+
// Required for Next.js to produce the correct `.nft.json` files.
|
250492
|
+
spawnOpts.env.NEXT_PRIVATE_OUTPUT_TRACE_ROOT = baseDir;
|
249925
250493
|
// Yarn v2 PnP mode may be activated, so force
|
249926
250494
|
// "node-modules" linker style
|
249927
250495
|
const env = {
|
@@ -250150,14 +250718,16 @@ async function main(client) {
|
|
250150
250718
|
...requiredServerFilesJson,
|
250151
250719
|
appDir: '.',
|
250152
250720
|
files: requiredServerFilesJson.files.map((i) => {
|
250153
|
-
const originalPath = path_1.join(
|
250721
|
+
const originalPath = path_1.join(requiredServerFilesJson.appDir, i);
|
250154
250722
|
const relPath = path_1.join(OUTPUT_DIR, path_1.relative(distDir, originalPath));
|
250155
250723
|
const absolutePath = path_1.join(cwd, relPath);
|
250156
250724
|
const output = path_1.relative(baseDir, absolutePath);
|
250157
|
-
return
|
250158
|
-
|
250159
|
-
|
250160
|
-
|
250725
|
+
return relPath === output
|
250726
|
+
? relPath
|
250727
|
+
: {
|
250728
|
+
input: relPath,
|
250729
|
+
output,
|
250730
|
+
};
|
250161
250731
|
}),
|
250162
250732
|
});
|
250163
250733
|
}
|
@@ -260474,7 +261044,7 @@ class DevServer {
|
|
260474
261044
|
if (!match) {
|
260475
261045
|
// If the dev command is started, then proxy to it
|
260476
261046
|
if (this.devProcessPort) {
|
260477
|
-
const upstream = `http://
|
261047
|
+
const upstream = `http://127.0.0.1:${this.devProcessPort}`;
|
260478
261048
|
debug(`Proxying to frontend dev server: ${upstream}`);
|
260479
261049
|
// Add the Vercel platform proxy request headers
|
260480
261050
|
const headers = this.getProxyHeaders(req, requestId, false);
|
@@ -260574,7 +261144,7 @@ class DevServer {
|
|
260574
261144
|
req.headers[name] = value;
|
260575
261145
|
}
|
260576
261146
|
this.setResponseHeaders(res, requestId);
|
260577
|
-
return proxyPass(req, res, `http://
|
261147
|
+
return proxyPass(req, res, `http://127.0.0.1:${port}`, this, requestId, false);
|
260578
261148
|
}
|
260579
261149
|
else {
|
260580
261150
|
debug(`Skipping \`startDevServer()\` for ${match.entrypoint}`);
|
@@ -260598,7 +261168,7 @@ class DevServer {
|
|
260598
261168
|
req.headers[name] = value;
|
260599
261169
|
}
|
260600
261170
|
this.setResponseHeaders(res, requestId);
|
260601
|
-
return proxyPass(req, res, `http://
|
261171
|
+
return proxyPass(req, res, `http://127.0.0.1:${this.devProcessPort}`, this, requestId, false);
|
260602
261172
|
}
|
260603
261173
|
if (!foundAsset) {
|
260604
261174
|
await this.send404(req, res, requestId);
|
@@ -261309,7 +261879,7 @@ class DevServer {
|
|
261309
261879
|
socket.destroy();
|
261310
261880
|
return;
|
261311
261881
|
}
|
261312
|
-
const target = `http://
|
261882
|
+
const target = `http://127.0.0.1:${this.devProcessPort}`;
|
261313
261883
|
this.output.debug(`Detected "upgrade" event, proxying to ${target}`);
|
261314
261884
|
this.proxy.ws(req, socket, head, { target });
|
261315
261885
|
});
|
@@ -270503,7 +271073,7 @@ module.exports = JSON.parse("[\"ac\",\"com.ac\",\"edu.ac\",\"gov.ac\",\"net.ac\"
|
|
270503
271073
|
/***/ ((module) => {
|
270504
271074
|
|
270505
271075
|
"use strict";
|
270506
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.
|
271076
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"23.1.3-canary.48\",\"preferGlobal\":true,\"license\":\"Apache-2.0\",\"description\":\"The command-line interface for Vercel\",\"homepage\":\"https://vercel.com\",\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/vercel/vercel.git\",\"directory\":\"packages/cli\"},\"scripts\":{\"preinstall\":\"node ./scripts/preinstall.js\",\"test\":\"jest\",\"test-unit\":\"jest --coverage --verbose\",\"test-integration-cli\":\"rimraf test/fixtures/integration && ava test/integration.js --serial --fail-fast --verbose\",\"test-integration-dev\":\"ava test/dev/integration.js --serial --fail-fast --verbose\",\"prepublishOnly\":\"yarn build\",\"coverage\":\"codecov\",\"build\":\"node -r ts-eager/register ./scripts/build.ts\",\"build-dev\":\"node -r ts-eager/register ./scripts/build.ts --dev\"},\"bin\":{\"vc\":\"./dist/index.js\",\"vercel\":\"./dist/index.js\"},\"files\":[\"dist\",\"scripts/preinstall.js\"],\"ava\":{\"compileEnhancements\":false,\"extensions\":[\"ts\"],\"require\":[\"ts-node/register/transpile-only\",\"esm\"]},\"engines\":{\"node\":\">= 12\"},\"dependencies\":{\"@vercel/build-utils\":\"2.12.3-canary.28\",\"@vercel/go\":\"1.2.4-canary.4\",\"@vercel/node\":\"1.12.2-canary.7\",\"@vercel/python\":\"2.1.2-canary.1\",\"@vercel/ruby\":\"1.2.8-canary.6\",\"update-notifier\":\"4.1.0\",\"vercel-plugin-middleware\":\"0.0.0-canary.7\",\"vercel-plugin-node\":\"1.12.2-canary.20\"},\"devDependencies\":{\"@next/env\":\"11.1.2\",\"@sentry/node\":\"5.5.0\",\"@sindresorhus/slugify\":\"0.11.0\",\"@tootallnate/once\":\"1.1.2\",\"@types/ansi-escapes\":\"3.0.0\",\"@types/ansi-regex\":\"4.0.0\",\"@types/async-retry\":\"1.2.1\",\"@types/bytes\":\"3.0.0\",\"@types/chance\":\"1.1.3\",\"@types/debug\":\"0.0.31\",\"@types/dotenv\":\"6.1.1\",\"@types/escape-html\":\"0.0.20\",\"@types/express\":\"4.17.13\",\"@types/fs-extra\":\"9.0.13\",\"@types/glob\":\"7.1.1\",\"@types/http-proxy\":\"1.16.2\",\"@types/inquirer\":\"7.3.1\",\"@types/jest\":\"27.0.1\",\"@types/load-json-file\":\"2.0.7\",\"@types/mime-types\":\"2.1.0\",\"@types/minimatch\":\"3.0.3\",\"@types/mri\":\"1.1.0\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"11.11.0\",\"@types/node-fetch\":\"2.5.10\",\"@types/npm-package-arg\":\"6.1.0\",\"@types/pluralize\":\"0.0.29\",\"@types/progress\":\"2.0.3\",\"@types/psl\":\"1.1.0\",\"@types/semver\":\"6.0.1\",\"@types/tar-fs\":\"1.16.1\",\"@types/text-table\":\"0.2.0\",\"@types/title\":\"3.4.1\",\"@types/universal-analytics\":\"0.4.2\",\"@types/update-notifier\":\"5.1.0\",\"@types/which\":\"1.3.2\",\"@types/write-json-file\":\"2.2.1\",\"@vercel/frameworks\":\"0.5.1-canary.16\",\"@vercel/ncc\":\"0.24.0\",\"@vercel/nft\":\"0.17.0\",\"@zeit/fun\":\"0.11.2\",\"@zeit/source-map-support\":\"0.6.2\",\"ajv\":\"6.12.2\",\"alpha-sort\":\"2.0.1\",\"ansi-escapes\":\"3.0.0\",\"ansi-regex\":\"3.0.0\",\"arg\":\"5.0.0\",\"async-listen\":\"1.2.0\",\"async-retry\":\"1.1.3\",\"async-sema\":\"2.1.4\",\"ava\":\"2.2.0\",\"bytes\":\"3.0.0\",\"chalk\":\"4.1.0\",\"chance\":\"1.1.7\",\"chokidar\":\"3.3.1\",\"clipboardy\":\"2.1.0\",\"codecov\":\"3.8.2\",\"cpy\":\"7.2.0\",\"credit-card\":\"3.0.1\",\"date-fns\":\"1.29.0\",\"debug\":\"3.1.0\",\"dot\":\"1.1.3\",\"dotenv\":\"4.0.0\",\"email-prompt\":\"0.3.2\",\"email-validator\":\"1.1.1\",\"epipebomb\":\"1.0.0\",\"escape-html\":\"1.0.3\",\"esm\":\"3.1.4\",\"execa\":\"3.2.0\",\"express\":\"4.17.1\",\"fast-deep-equal\":\"3.1.3\",\"fs-extra\":\"10.0.0\",\"get-port\":\"5.1.1\",\"glob\":\"7.1.2\",\"http-proxy\":\"1.18.1\",\"inquirer\":\"7.0.4\",\"is-docker\":\"2.2.1\",\"is-port-reachable\":\"3.0.0\",\"is-url\":\"1.2.2\",\"jaro-winkler\":\"0.2.8\",\"jsonlines\":\"0.1.1\",\"load-json-file\":\"3.0.0\",\"mime-types\":\"2.1.24\",\"minimatch\":\"3.0.4\",\"mri\":\"1.1.5\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.1\",\"npm-package-arg\":\"6.1.0\",\"open\":\"8.2.0\",\"ora\":\"3.4.0\",\"pcre-to-regexp\":\"1.0.0\",\"pluralize\":\"7.0.0\",\"progress\":\"2.0.3\",\"promisepipe\":\"3.0.0\",\"psl\":\"1.1.31\",\"qr-image\":\"3.2.0\",\"raw-body\":\"2.4.1\",\"rimraf\":\"3.0.2\",\"semver\":\"5.5.0\",\"serve-handler\":\"6.1.1\",\"strip-ansi\":\"5.2.0\",\"stripe\":\"5.1.0\",\"tar-fs\":\"1.16.3\",\"test-listen\":\"1.1.0\",\"text-table\":\"0.2.0\",\"title\":\"3.4.1\",\"tmp-promise\":\"1.0.3\",\"tree-kill\":\"1.2.2\",\"ts-eager\":\"2.0.2\",\"ts-node\":\"8.3.0\",\"typescript\":\"4.3.4\",\"universal-analytics\":\"0.4.20\",\"utility-types\":\"2.1.0\",\"which\":\"2.0.2\",\"write-json-file\":\"2.2.0\",\"xdg-app-paths\":\"5.1.0\"},\"jest\":{\"preset\":\"ts-jest\",\"globals\":{\"ts-jest\":{\"diagnostics\":false,\"isolatedModules\":true}},\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]},\"gitHead\":\"82fdd5d121457c4b1ab8254eb8b88c77375ffa4b\"}");
|
270507
271077
|
|
270508
271078
|
/***/ }),
|
270509
271079
|
|
@@ -270519,7 +271089,7 @@ module.exports = JSON.parse("{\"VISA\":\"Visa\",\"MASTERCARD\":\"MasterCard\",\"
|
|
270519
271089
|
/***/ ((module) => {
|
270520
271090
|
|
270521
271091
|
"use strict";
|
270522
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.
|
271092
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"10.2.3-canary.29\",\"main\":\"dist/index.js\",\"typings\":\"dist/index.d.ts\",\"homepage\":\"https://vercel.com\",\"license\":\"MIT\",\"files\":[\"dist\"],\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/vercel/vercel.git\",\"directory\":\"packages/client\"},\"scripts\":{\"build\":\"tsc\",\"test-integration-once\":\"jest --verbose --runInBand --bail tests/create-deployment.test.ts tests/create-legacy-deployment.test.ts tests/paths.test.ts\",\"test-unit\":\"jest --verbose --runInBand --bail tests/unit.*test.*\"},\"engines\":{\"node\":\">= 12\"},\"devDependencies\":{\"@types/async-retry\":\"1.4.1\",\"@types/fs-extra\":\"7.0.0\",\"@types/jest\":\"27.0.1\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"12.0.4\",\"@types/node-fetch\":\"2.5.4\",\"@types/recursive-readdir\":\"2.2.0\",\"typescript\":\"4.3.4\"},\"jest\":{\"preset\":\"ts-jest\",\"testEnvironment\":\"node\",\"verbose\":false,\"setupFilesAfterEnv\":[\"<rootDir>/tests/setup/index.ts\"]},\"dependencies\":{\"@vercel/build-utils\":\"2.12.3-canary.28\",\"@zeit/fetch\":\"5.2.0\",\"async-retry\":\"1.2.3\",\"async-sema\":\"3.0.0\",\"fs-extra\":\"8.0.1\",\"ignore\":\"4.0.6\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.1\",\"querystring\":\"^0.2.0\",\"recursive-readdir\":\"2.2.2\",\"sleep-promise\":\"8.0.1\"}}");
|
270523
271093
|
|
270524
271094
|
/***/ }),
|
270525
271095
|
|