vercel 28.18.4 → 28.18.5
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 +986 -4
- package/package.json +4 -4
package/dist/index.js
CHANGED
@@ -63590,6 +63590,979 @@ function patch (fs) {
|
|
63590
63590
|
}
|
63591
63591
|
|
63592
63592
|
|
63593
|
+
/***/ }),
|
63594
|
+
|
63595
|
+
/***/ 23016:
|
63596
|
+
/***/ ((module) => {
|
63597
|
+
|
63598
|
+
"use strict";
|
63599
|
+
|
63600
|
+
|
63601
|
+
module.exports = clone
|
63602
|
+
|
63603
|
+
var getPrototypeOf = Object.getPrototypeOf || function (obj) {
|
63604
|
+
return obj.__proto__
|
63605
|
+
}
|
63606
|
+
|
63607
|
+
function clone (obj) {
|
63608
|
+
if (obj === null || typeof obj !== 'object')
|
63609
|
+
return obj
|
63610
|
+
|
63611
|
+
if (obj instanceof Object)
|
63612
|
+
var copy = { __proto__: getPrototypeOf(obj) }
|
63613
|
+
else
|
63614
|
+
var copy = Object.create(null)
|
63615
|
+
|
63616
|
+
Object.getOwnPropertyNames(obj).forEach(function (key) {
|
63617
|
+
Object.defineProperty(copy, key, Object.getOwnPropertyDescriptor(obj, key))
|
63618
|
+
})
|
63619
|
+
|
63620
|
+
return copy
|
63621
|
+
}
|
63622
|
+
|
63623
|
+
|
63624
|
+
/***/ }),
|
63625
|
+
|
63626
|
+
/***/ 57156:
|
63627
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
63628
|
+
|
63629
|
+
var fs = __webpack_require__(35747)
|
63630
|
+
var polyfills = __webpack_require__(54692)
|
63631
|
+
var legacy = __webpack_require__(36465)
|
63632
|
+
var clone = __webpack_require__(23016)
|
63633
|
+
|
63634
|
+
var util = __webpack_require__(31669)
|
63635
|
+
|
63636
|
+
/* istanbul ignore next - node 0.x polyfill */
|
63637
|
+
var gracefulQueue
|
63638
|
+
var previousSymbol
|
63639
|
+
|
63640
|
+
/* istanbul ignore else - node 0.x polyfill */
|
63641
|
+
if (typeof Symbol === 'function' && typeof Symbol.for === 'function') {
|
63642
|
+
gracefulQueue = Symbol.for('graceful-fs.queue')
|
63643
|
+
// This is used in testing by future versions
|
63644
|
+
previousSymbol = Symbol.for('graceful-fs.previous')
|
63645
|
+
} else {
|
63646
|
+
gracefulQueue = '___graceful-fs.queue'
|
63647
|
+
previousSymbol = '___graceful-fs.previous'
|
63648
|
+
}
|
63649
|
+
|
63650
|
+
function noop () {}
|
63651
|
+
|
63652
|
+
function publishQueue(context, queue) {
|
63653
|
+
Object.defineProperty(context, gracefulQueue, {
|
63654
|
+
get: function() {
|
63655
|
+
return queue
|
63656
|
+
}
|
63657
|
+
})
|
63658
|
+
}
|
63659
|
+
|
63660
|
+
var debug = noop
|
63661
|
+
if (util.debuglog)
|
63662
|
+
debug = util.debuglog('gfs4')
|
63663
|
+
else if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || ''))
|
63664
|
+
debug = function() {
|
63665
|
+
var m = util.format.apply(util, arguments)
|
63666
|
+
m = 'GFS4: ' + m.split(/\n/).join('\nGFS4: ')
|
63667
|
+
console.error(m)
|
63668
|
+
}
|
63669
|
+
|
63670
|
+
// Once time initialization
|
63671
|
+
if (!fs[gracefulQueue]) {
|
63672
|
+
// This queue can be shared by multiple loaded instances
|
63673
|
+
var queue = global[gracefulQueue] || []
|
63674
|
+
publishQueue(fs, queue)
|
63675
|
+
|
63676
|
+
// Patch fs.close/closeSync to shared queue version, because we need
|
63677
|
+
// to retry() whenever a close happens *anywhere* in the program.
|
63678
|
+
// This is essential when multiple graceful-fs instances are
|
63679
|
+
// in play at the same time.
|
63680
|
+
fs.close = (function (fs$close) {
|
63681
|
+
function close (fd, cb) {
|
63682
|
+
return fs$close.call(fs, fd, function (err) {
|
63683
|
+
// This function uses the graceful-fs shared queue
|
63684
|
+
if (!err) {
|
63685
|
+
resetQueue()
|
63686
|
+
}
|
63687
|
+
|
63688
|
+
if (typeof cb === 'function')
|
63689
|
+
cb.apply(this, arguments)
|
63690
|
+
})
|
63691
|
+
}
|
63692
|
+
|
63693
|
+
Object.defineProperty(close, previousSymbol, {
|
63694
|
+
value: fs$close
|
63695
|
+
})
|
63696
|
+
return close
|
63697
|
+
})(fs.close)
|
63698
|
+
|
63699
|
+
fs.closeSync = (function (fs$closeSync) {
|
63700
|
+
function closeSync (fd) {
|
63701
|
+
// This function uses the graceful-fs shared queue
|
63702
|
+
fs$closeSync.apply(fs, arguments)
|
63703
|
+
resetQueue()
|
63704
|
+
}
|
63705
|
+
|
63706
|
+
Object.defineProperty(closeSync, previousSymbol, {
|
63707
|
+
value: fs$closeSync
|
63708
|
+
})
|
63709
|
+
return closeSync
|
63710
|
+
})(fs.closeSync)
|
63711
|
+
|
63712
|
+
if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || '')) {
|
63713
|
+
process.on('exit', function() {
|
63714
|
+
debug(fs[gracefulQueue])
|
63715
|
+
__webpack_require__(42357).equal(fs[gracefulQueue].length, 0)
|
63716
|
+
})
|
63717
|
+
}
|
63718
|
+
}
|
63719
|
+
|
63720
|
+
if (!global[gracefulQueue]) {
|
63721
|
+
publishQueue(global, fs[gracefulQueue]);
|
63722
|
+
}
|
63723
|
+
|
63724
|
+
module.exports = patch(clone(fs))
|
63725
|
+
if (process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH && !fs.__patched) {
|
63726
|
+
module.exports = patch(fs)
|
63727
|
+
fs.__patched = true;
|
63728
|
+
}
|
63729
|
+
|
63730
|
+
function patch (fs) {
|
63731
|
+
// Everything that references the open() function needs to be in here
|
63732
|
+
polyfills(fs)
|
63733
|
+
fs.gracefulify = patch
|
63734
|
+
|
63735
|
+
fs.createReadStream = createReadStream
|
63736
|
+
fs.createWriteStream = createWriteStream
|
63737
|
+
var fs$readFile = fs.readFile
|
63738
|
+
fs.readFile = readFile
|
63739
|
+
function readFile (path, options, cb) {
|
63740
|
+
if (typeof options === 'function')
|
63741
|
+
cb = options, options = null
|
63742
|
+
|
63743
|
+
return go$readFile(path, options, cb)
|
63744
|
+
|
63745
|
+
function go$readFile (path, options, cb, startTime) {
|
63746
|
+
return fs$readFile(path, options, function (err) {
|
63747
|
+
if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
|
63748
|
+
enqueue([go$readFile, [path, options, cb], err, startTime || Date.now(), Date.now()])
|
63749
|
+
else {
|
63750
|
+
if (typeof cb === 'function')
|
63751
|
+
cb.apply(this, arguments)
|
63752
|
+
}
|
63753
|
+
})
|
63754
|
+
}
|
63755
|
+
}
|
63756
|
+
|
63757
|
+
var fs$writeFile = fs.writeFile
|
63758
|
+
fs.writeFile = writeFile
|
63759
|
+
function writeFile (path, data, options, cb) {
|
63760
|
+
if (typeof options === 'function')
|
63761
|
+
cb = options, options = null
|
63762
|
+
|
63763
|
+
return go$writeFile(path, data, options, cb)
|
63764
|
+
|
63765
|
+
function go$writeFile (path, data, options, cb, startTime) {
|
63766
|
+
return fs$writeFile(path, data, options, function (err) {
|
63767
|
+
if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
|
63768
|
+
enqueue([go$writeFile, [path, data, options, cb], err, startTime || Date.now(), Date.now()])
|
63769
|
+
else {
|
63770
|
+
if (typeof cb === 'function')
|
63771
|
+
cb.apply(this, arguments)
|
63772
|
+
}
|
63773
|
+
})
|
63774
|
+
}
|
63775
|
+
}
|
63776
|
+
|
63777
|
+
var fs$appendFile = fs.appendFile
|
63778
|
+
if (fs$appendFile)
|
63779
|
+
fs.appendFile = appendFile
|
63780
|
+
function appendFile (path, data, options, cb) {
|
63781
|
+
if (typeof options === 'function')
|
63782
|
+
cb = options, options = null
|
63783
|
+
|
63784
|
+
return go$appendFile(path, data, options, cb)
|
63785
|
+
|
63786
|
+
function go$appendFile (path, data, options, cb, startTime) {
|
63787
|
+
return fs$appendFile(path, data, options, function (err) {
|
63788
|
+
if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
|
63789
|
+
enqueue([go$appendFile, [path, data, options, cb], err, startTime || Date.now(), Date.now()])
|
63790
|
+
else {
|
63791
|
+
if (typeof cb === 'function')
|
63792
|
+
cb.apply(this, arguments)
|
63793
|
+
}
|
63794
|
+
})
|
63795
|
+
}
|
63796
|
+
}
|
63797
|
+
|
63798
|
+
var fs$copyFile = fs.copyFile
|
63799
|
+
if (fs$copyFile)
|
63800
|
+
fs.copyFile = copyFile
|
63801
|
+
function copyFile (src, dest, flags, cb) {
|
63802
|
+
if (typeof flags === 'function') {
|
63803
|
+
cb = flags
|
63804
|
+
flags = 0
|
63805
|
+
}
|
63806
|
+
return go$copyFile(src, dest, flags, cb)
|
63807
|
+
|
63808
|
+
function go$copyFile (src, dest, flags, cb, startTime) {
|
63809
|
+
return fs$copyFile(src, dest, flags, function (err) {
|
63810
|
+
if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
|
63811
|
+
enqueue([go$copyFile, [src, dest, flags, cb], err, startTime || Date.now(), Date.now()])
|
63812
|
+
else {
|
63813
|
+
if (typeof cb === 'function')
|
63814
|
+
cb.apply(this, arguments)
|
63815
|
+
}
|
63816
|
+
})
|
63817
|
+
}
|
63818
|
+
}
|
63819
|
+
|
63820
|
+
var fs$readdir = fs.readdir
|
63821
|
+
fs.readdir = readdir
|
63822
|
+
var noReaddirOptionVersions = /^v[0-5]\./
|
63823
|
+
function readdir (path, options, cb) {
|
63824
|
+
if (typeof options === 'function')
|
63825
|
+
cb = options, options = null
|
63826
|
+
|
63827
|
+
var go$readdir = noReaddirOptionVersions.test(process.version)
|
63828
|
+
? function go$readdir (path, options, cb, startTime) {
|
63829
|
+
return fs$readdir(path, fs$readdirCallback(
|
63830
|
+
path, options, cb, startTime
|
63831
|
+
))
|
63832
|
+
}
|
63833
|
+
: function go$readdir (path, options, cb, startTime) {
|
63834
|
+
return fs$readdir(path, options, fs$readdirCallback(
|
63835
|
+
path, options, cb, startTime
|
63836
|
+
))
|
63837
|
+
}
|
63838
|
+
|
63839
|
+
return go$readdir(path, options, cb)
|
63840
|
+
|
63841
|
+
function fs$readdirCallback (path, options, cb, startTime) {
|
63842
|
+
return function (err, files) {
|
63843
|
+
if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
|
63844
|
+
enqueue([
|
63845
|
+
go$readdir,
|
63846
|
+
[path, options, cb],
|
63847
|
+
err,
|
63848
|
+
startTime || Date.now(),
|
63849
|
+
Date.now()
|
63850
|
+
])
|
63851
|
+
else {
|
63852
|
+
if (files && files.sort)
|
63853
|
+
files.sort()
|
63854
|
+
|
63855
|
+
if (typeof cb === 'function')
|
63856
|
+
cb.call(this, err, files)
|
63857
|
+
}
|
63858
|
+
}
|
63859
|
+
}
|
63860
|
+
}
|
63861
|
+
|
63862
|
+
if (process.version.substr(0, 4) === 'v0.8') {
|
63863
|
+
var legStreams = legacy(fs)
|
63864
|
+
ReadStream = legStreams.ReadStream
|
63865
|
+
WriteStream = legStreams.WriteStream
|
63866
|
+
}
|
63867
|
+
|
63868
|
+
var fs$ReadStream = fs.ReadStream
|
63869
|
+
if (fs$ReadStream) {
|
63870
|
+
ReadStream.prototype = Object.create(fs$ReadStream.prototype)
|
63871
|
+
ReadStream.prototype.open = ReadStream$open
|
63872
|
+
}
|
63873
|
+
|
63874
|
+
var fs$WriteStream = fs.WriteStream
|
63875
|
+
if (fs$WriteStream) {
|
63876
|
+
WriteStream.prototype = Object.create(fs$WriteStream.prototype)
|
63877
|
+
WriteStream.prototype.open = WriteStream$open
|
63878
|
+
}
|
63879
|
+
|
63880
|
+
Object.defineProperty(fs, 'ReadStream', {
|
63881
|
+
get: function () {
|
63882
|
+
return ReadStream
|
63883
|
+
},
|
63884
|
+
set: function (val) {
|
63885
|
+
ReadStream = val
|
63886
|
+
},
|
63887
|
+
enumerable: true,
|
63888
|
+
configurable: true
|
63889
|
+
})
|
63890
|
+
Object.defineProperty(fs, 'WriteStream', {
|
63891
|
+
get: function () {
|
63892
|
+
return WriteStream
|
63893
|
+
},
|
63894
|
+
set: function (val) {
|
63895
|
+
WriteStream = val
|
63896
|
+
},
|
63897
|
+
enumerable: true,
|
63898
|
+
configurable: true
|
63899
|
+
})
|
63900
|
+
|
63901
|
+
// legacy names
|
63902
|
+
var FileReadStream = ReadStream
|
63903
|
+
Object.defineProperty(fs, 'FileReadStream', {
|
63904
|
+
get: function () {
|
63905
|
+
return FileReadStream
|
63906
|
+
},
|
63907
|
+
set: function (val) {
|
63908
|
+
FileReadStream = val
|
63909
|
+
},
|
63910
|
+
enumerable: true,
|
63911
|
+
configurable: true
|
63912
|
+
})
|
63913
|
+
var FileWriteStream = WriteStream
|
63914
|
+
Object.defineProperty(fs, 'FileWriteStream', {
|
63915
|
+
get: function () {
|
63916
|
+
return FileWriteStream
|
63917
|
+
},
|
63918
|
+
set: function (val) {
|
63919
|
+
FileWriteStream = val
|
63920
|
+
},
|
63921
|
+
enumerable: true,
|
63922
|
+
configurable: true
|
63923
|
+
})
|
63924
|
+
|
63925
|
+
function ReadStream (path, options) {
|
63926
|
+
if (this instanceof ReadStream)
|
63927
|
+
return fs$ReadStream.apply(this, arguments), this
|
63928
|
+
else
|
63929
|
+
return ReadStream.apply(Object.create(ReadStream.prototype), arguments)
|
63930
|
+
}
|
63931
|
+
|
63932
|
+
function ReadStream$open () {
|
63933
|
+
var that = this
|
63934
|
+
open(that.path, that.flags, that.mode, function (err, fd) {
|
63935
|
+
if (err) {
|
63936
|
+
if (that.autoClose)
|
63937
|
+
that.destroy()
|
63938
|
+
|
63939
|
+
that.emit('error', err)
|
63940
|
+
} else {
|
63941
|
+
that.fd = fd
|
63942
|
+
that.emit('open', fd)
|
63943
|
+
that.read()
|
63944
|
+
}
|
63945
|
+
})
|
63946
|
+
}
|
63947
|
+
|
63948
|
+
function WriteStream (path, options) {
|
63949
|
+
if (this instanceof WriteStream)
|
63950
|
+
return fs$WriteStream.apply(this, arguments), this
|
63951
|
+
else
|
63952
|
+
return WriteStream.apply(Object.create(WriteStream.prototype), arguments)
|
63953
|
+
}
|
63954
|
+
|
63955
|
+
function WriteStream$open () {
|
63956
|
+
var that = this
|
63957
|
+
open(that.path, that.flags, that.mode, function (err, fd) {
|
63958
|
+
if (err) {
|
63959
|
+
that.destroy()
|
63960
|
+
that.emit('error', err)
|
63961
|
+
} else {
|
63962
|
+
that.fd = fd
|
63963
|
+
that.emit('open', fd)
|
63964
|
+
}
|
63965
|
+
})
|
63966
|
+
}
|
63967
|
+
|
63968
|
+
function createReadStream (path, options) {
|
63969
|
+
return new fs.ReadStream(path, options)
|
63970
|
+
}
|
63971
|
+
|
63972
|
+
function createWriteStream (path, options) {
|
63973
|
+
return new fs.WriteStream(path, options)
|
63974
|
+
}
|
63975
|
+
|
63976
|
+
var fs$open = fs.open
|
63977
|
+
fs.open = open
|
63978
|
+
function open (path, flags, mode, cb) {
|
63979
|
+
if (typeof mode === 'function')
|
63980
|
+
cb = mode, mode = null
|
63981
|
+
|
63982
|
+
return go$open(path, flags, mode, cb)
|
63983
|
+
|
63984
|
+
function go$open (path, flags, mode, cb, startTime) {
|
63985
|
+
return fs$open(path, flags, mode, function (err, fd) {
|
63986
|
+
if (err && (err.code === 'EMFILE' || err.code === 'ENFILE'))
|
63987
|
+
enqueue([go$open, [path, flags, mode, cb], err, startTime || Date.now(), Date.now()])
|
63988
|
+
else {
|
63989
|
+
if (typeof cb === 'function')
|
63990
|
+
cb.apply(this, arguments)
|
63991
|
+
}
|
63992
|
+
})
|
63993
|
+
}
|
63994
|
+
}
|
63995
|
+
|
63996
|
+
return fs
|
63997
|
+
}
|
63998
|
+
|
63999
|
+
function enqueue (elem) {
|
64000
|
+
debug('ENQUEUE', elem[0].name, elem[1])
|
64001
|
+
fs[gracefulQueue].push(elem)
|
64002
|
+
retry()
|
64003
|
+
}
|
64004
|
+
|
64005
|
+
// keep track of the timeout between retry() calls
|
64006
|
+
var retryTimer
|
64007
|
+
|
64008
|
+
// reset the startTime and lastTime to now
|
64009
|
+
// this resets the start of the 60 second overall timeout as well as the
|
64010
|
+
// delay between attempts so that we'll retry these jobs sooner
|
64011
|
+
function resetQueue () {
|
64012
|
+
var now = Date.now()
|
64013
|
+
for (var i = 0; i < fs[gracefulQueue].length; ++i) {
|
64014
|
+
// entries that are only a length of 2 are from an older version, don't
|
64015
|
+
// bother modifying those since they'll be retried anyway.
|
64016
|
+
if (fs[gracefulQueue][i].length > 2) {
|
64017
|
+
fs[gracefulQueue][i][3] = now // startTime
|
64018
|
+
fs[gracefulQueue][i][4] = now // lastTime
|
64019
|
+
}
|
64020
|
+
}
|
64021
|
+
// call retry to make sure we're actively processing the queue
|
64022
|
+
retry()
|
64023
|
+
}
|
64024
|
+
|
64025
|
+
function retry () {
|
64026
|
+
// clear the timer and remove it to help prevent unintended concurrency
|
64027
|
+
clearTimeout(retryTimer)
|
64028
|
+
retryTimer = undefined
|
64029
|
+
|
64030
|
+
if (fs[gracefulQueue].length === 0)
|
64031
|
+
return
|
64032
|
+
|
64033
|
+
var elem = fs[gracefulQueue].shift()
|
64034
|
+
var fn = elem[0]
|
64035
|
+
var args = elem[1]
|
64036
|
+
// these items may be unset if they were added by an older graceful-fs
|
64037
|
+
var err = elem[2]
|
64038
|
+
var startTime = elem[3]
|
64039
|
+
var lastTime = elem[4]
|
64040
|
+
|
64041
|
+
// if we don't have a startTime we have no way of knowing if we've waited
|
64042
|
+
// long enough, so go ahead and retry this item now
|
64043
|
+
if (startTime === undefined) {
|
64044
|
+
debug('RETRY', fn.name, args)
|
64045
|
+
fn.apply(null, args)
|
64046
|
+
} else if (Date.now() - startTime >= 60000) {
|
64047
|
+
// it's been more than 60 seconds total, bail now
|
64048
|
+
debug('TIMEOUT', fn.name, args)
|
64049
|
+
var cb = args.pop()
|
64050
|
+
if (typeof cb === 'function')
|
64051
|
+
cb.call(null, err)
|
64052
|
+
} else {
|
64053
|
+
// the amount of time between the last attempt and right now
|
64054
|
+
var sinceAttempt = Date.now() - lastTime
|
64055
|
+
// the amount of time between when we first tried, and when we last tried
|
64056
|
+
// rounded up to at least 1
|
64057
|
+
var sinceStart = Math.max(lastTime - startTime, 1)
|
64058
|
+
// backoff. wait longer than the total time we've been retrying, but only
|
64059
|
+
// up to a maximum of 100ms
|
64060
|
+
var desiredDelay = Math.min(sinceStart * 1.2, 100)
|
64061
|
+
// it's been long enough since the last retry, do it again
|
64062
|
+
if (sinceAttempt >= desiredDelay) {
|
64063
|
+
debug('RETRY', fn.name, args)
|
64064
|
+
fn.apply(null, args.concat([startTime]))
|
64065
|
+
} else {
|
64066
|
+
// if we can't do this job yet, push it to the end of the queue
|
64067
|
+
// and let the next iteration check again
|
64068
|
+
fs[gracefulQueue].push(elem)
|
64069
|
+
}
|
64070
|
+
}
|
64071
|
+
|
64072
|
+
// schedule our next run if one isn't already scheduled
|
64073
|
+
if (retryTimer === undefined) {
|
64074
|
+
retryTimer = setTimeout(retry, 0)
|
64075
|
+
}
|
64076
|
+
}
|
64077
|
+
|
64078
|
+
|
64079
|
+
/***/ }),
|
64080
|
+
|
64081
|
+
/***/ 36465:
|
64082
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
64083
|
+
|
64084
|
+
var Stream = __webpack_require__(92413).Stream
|
64085
|
+
|
64086
|
+
module.exports = legacy
|
64087
|
+
|
64088
|
+
function legacy (fs) {
|
64089
|
+
return {
|
64090
|
+
ReadStream: ReadStream,
|
64091
|
+
WriteStream: WriteStream
|
64092
|
+
}
|
64093
|
+
|
64094
|
+
function ReadStream (path, options) {
|
64095
|
+
if (!(this instanceof ReadStream)) return new ReadStream(path, options);
|
64096
|
+
|
64097
|
+
Stream.call(this);
|
64098
|
+
|
64099
|
+
var self = this;
|
64100
|
+
|
64101
|
+
this.path = path;
|
64102
|
+
this.fd = null;
|
64103
|
+
this.readable = true;
|
64104
|
+
this.paused = false;
|
64105
|
+
|
64106
|
+
this.flags = 'r';
|
64107
|
+
this.mode = 438; /*=0666*/
|
64108
|
+
this.bufferSize = 64 * 1024;
|
64109
|
+
|
64110
|
+
options = options || {};
|
64111
|
+
|
64112
|
+
// Mixin options into this
|
64113
|
+
var keys = Object.keys(options);
|
64114
|
+
for (var index = 0, length = keys.length; index < length; index++) {
|
64115
|
+
var key = keys[index];
|
64116
|
+
this[key] = options[key];
|
64117
|
+
}
|
64118
|
+
|
64119
|
+
if (this.encoding) this.setEncoding(this.encoding);
|
64120
|
+
|
64121
|
+
if (this.start !== undefined) {
|
64122
|
+
if ('number' !== typeof this.start) {
|
64123
|
+
throw TypeError('start must be a Number');
|
64124
|
+
}
|
64125
|
+
if (this.end === undefined) {
|
64126
|
+
this.end = Infinity;
|
64127
|
+
} else if ('number' !== typeof this.end) {
|
64128
|
+
throw TypeError('end must be a Number');
|
64129
|
+
}
|
64130
|
+
|
64131
|
+
if (this.start > this.end) {
|
64132
|
+
throw new Error('start must be <= end');
|
64133
|
+
}
|
64134
|
+
|
64135
|
+
this.pos = this.start;
|
64136
|
+
}
|
64137
|
+
|
64138
|
+
if (this.fd !== null) {
|
64139
|
+
process.nextTick(function() {
|
64140
|
+
self._read();
|
64141
|
+
});
|
64142
|
+
return;
|
64143
|
+
}
|
64144
|
+
|
64145
|
+
fs.open(this.path, this.flags, this.mode, function (err, fd) {
|
64146
|
+
if (err) {
|
64147
|
+
self.emit('error', err);
|
64148
|
+
self.readable = false;
|
64149
|
+
return;
|
64150
|
+
}
|
64151
|
+
|
64152
|
+
self.fd = fd;
|
64153
|
+
self.emit('open', fd);
|
64154
|
+
self._read();
|
64155
|
+
})
|
64156
|
+
}
|
64157
|
+
|
64158
|
+
function WriteStream (path, options) {
|
64159
|
+
if (!(this instanceof WriteStream)) return new WriteStream(path, options);
|
64160
|
+
|
64161
|
+
Stream.call(this);
|
64162
|
+
|
64163
|
+
this.path = path;
|
64164
|
+
this.fd = null;
|
64165
|
+
this.writable = true;
|
64166
|
+
|
64167
|
+
this.flags = 'w';
|
64168
|
+
this.encoding = 'binary';
|
64169
|
+
this.mode = 438; /*=0666*/
|
64170
|
+
this.bytesWritten = 0;
|
64171
|
+
|
64172
|
+
options = options || {};
|
64173
|
+
|
64174
|
+
// Mixin options into this
|
64175
|
+
var keys = Object.keys(options);
|
64176
|
+
for (var index = 0, length = keys.length; index < length; index++) {
|
64177
|
+
var key = keys[index];
|
64178
|
+
this[key] = options[key];
|
64179
|
+
}
|
64180
|
+
|
64181
|
+
if (this.start !== undefined) {
|
64182
|
+
if ('number' !== typeof this.start) {
|
64183
|
+
throw TypeError('start must be a Number');
|
64184
|
+
}
|
64185
|
+
if (this.start < 0) {
|
64186
|
+
throw new Error('start must be >= zero');
|
64187
|
+
}
|
64188
|
+
|
64189
|
+
this.pos = this.start;
|
64190
|
+
}
|
64191
|
+
|
64192
|
+
this.busy = false;
|
64193
|
+
this._queue = [];
|
64194
|
+
|
64195
|
+
if (this.fd === null) {
|
64196
|
+
this._open = fs.open;
|
64197
|
+
this._queue.push([this._open, this.path, this.flags, this.mode, undefined]);
|
64198
|
+
this.flush();
|
64199
|
+
}
|
64200
|
+
}
|
64201
|
+
}
|
64202
|
+
|
64203
|
+
|
64204
|
+
/***/ }),
|
64205
|
+
|
64206
|
+
/***/ 54692:
|
64207
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
64208
|
+
|
64209
|
+
var constants = __webpack_require__(27619)
|
64210
|
+
|
64211
|
+
var origCwd = process.cwd
|
64212
|
+
var cwd = null
|
64213
|
+
|
64214
|
+
var platform = process.env.GRACEFUL_FS_PLATFORM || process.platform
|
64215
|
+
|
64216
|
+
process.cwd = function() {
|
64217
|
+
if (!cwd)
|
64218
|
+
cwd = origCwd.call(process)
|
64219
|
+
return cwd
|
64220
|
+
}
|
64221
|
+
try {
|
64222
|
+
process.cwd()
|
64223
|
+
} catch (er) {}
|
64224
|
+
|
64225
|
+
// This check is needed until node.js 12 is required
|
64226
|
+
if (typeof process.chdir === 'function') {
|
64227
|
+
var chdir = process.chdir
|
64228
|
+
process.chdir = function (d) {
|
64229
|
+
cwd = null
|
64230
|
+
chdir.call(process, d)
|
64231
|
+
}
|
64232
|
+
if (Object.setPrototypeOf) Object.setPrototypeOf(process.chdir, chdir)
|
64233
|
+
}
|
64234
|
+
|
64235
|
+
module.exports = patch
|
64236
|
+
|
64237
|
+
function patch (fs) {
|
64238
|
+
// (re-)implement some things that are known busted or missing.
|
64239
|
+
|
64240
|
+
// lchmod, broken prior to 0.6.2
|
64241
|
+
// back-port the fix here.
|
64242
|
+
if (constants.hasOwnProperty('O_SYMLINK') &&
|
64243
|
+
process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)) {
|
64244
|
+
patchLchmod(fs)
|
64245
|
+
}
|
64246
|
+
|
64247
|
+
// lutimes implementation, or no-op
|
64248
|
+
if (!fs.lutimes) {
|
64249
|
+
patchLutimes(fs)
|
64250
|
+
}
|
64251
|
+
|
64252
|
+
// https://github.com/isaacs/node-graceful-fs/issues/4
|
64253
|
+
// Chown should not fail on einval or eperm if non-root.
|
64254
|
+
// It should not fail on enosys ever, as this just indicates
|
64255
|
+
// that a fs doesn't support the intended operation.
|
64256
|
+
|
64257
|
+
fs.chown = chownFix(fs.chown)
|
64258
|
+
fs.fchown = chownFix(fs.fchown)
|
64259
|
+
fs.lchown = chownFix(fs.lchown)
|
64260
|
+
|
64261
|
+
fs.chmod = chmodFix(fs.chmod)
|
64262
|
+
fs.fchmod = chmodFix(fs.fchmod)
|
64263
|
+
fs.lchmod = chmodFix(fs.lchmod)
|
64264
|
+
|
64265
|
+
fs.chownSync = chownFixSync(fs.chownSync)
|
64266
|
+
fs.fchownSync = chownFixSync(fs.fchownSync)
|
64267
|
+
fs.lchownSync = chownFixSync(fs.lchownSync)
|
64268
|
+
|
64269
|
+
fs.chmodSync = chmodFixSync(fs.chmodSync)
|
64270
|
+
fs.fchmodSync = chmodFixSync(fs.fchmodSync)
|
64271
|
+
fs.lchmodSync = chmodFixSync(fs.lchmodSync)
|
64272
|
+
|
64273
|
+
fs.stat = statFix(fs.stat)
|
64274
|
+
fs.fstat = statFix(fs.fstat)
|
64275
|
+
fs.lstat = statFix(fs.lstat)
|
64276
|
+
|
64277
|
+
fs.statSync = statFixSync(fs.statSync)
|
64278
|
+
fs.fstatSync = statFixSync(fs.fstatSync)
|
64279
|
+
fs.lstatSync = statFixSync(fs.lstatSync)
|
64280
|
+
|
64281
|
+
// if lchmod/lchown do not exist, then make them no-ops
|
64282
|
+
if (fs.chmod && !fs.lchmod) {
|
64283
|
+
fs.lchmod = function (path, mode, cb) {
|
64284
|
+
if (cb) process.nextTick(cb)
|
64285
|
+
}
|
64286
|
+
fs.lchmodSync = function () {}
|
64287
|
+
}
|
64288
|
+
if (fs.chown && !fs.lchown) {
|
64289
|
+
fs.lchown = function (path, uid, gid, cb) {
|
64290
|
+
if (cb) process.nextTick(cb)
|
64291
|
+
}
|
64292
|
+
fs.lchownSync = function () {}
|
64293
|
+
}
|
64294
|
+
|
64295
|
+
// on Windows, A/V software can lock the directory, causing this
|
64296
|
+
// to fail with an EACCES or EPERM if the directory contains newly
|
64297
|
+
// created files. Try again on failure, for up to 60 seconds.
|
64298
|
+
|
64299
|
+
// Set the timeout this long because some Windows Anti-Virus, such as Parity
|
64300
|
+
// bit9, may lock files for up to a minute, causing npm package install
|
64301
|
+
// failures. Also, take care to yield the scheduler. Windows scheduling gives
|
64302
|
+
// CPU to a busy looping process, which can cause the program causing the lock
|
64303
|
+
// contention to be starved of CPU by node, so the contention doesn't resolve.
|
64304
|
+
if (platform === "win32") {
|
64305
|
+
fs.rename = typeof fs.rename !== 'function' ? fs.rename
|
64306
|
+
: (function (fs$rename) {
|
64307
|
+
function rename (from, to, cb) {
|
64308
|
+
var start = Date.now()
|
64309
|
+
var backoff = 0;
|
64310
|
+
fs$rename(from, to, function CB (er) {
|
64311
|
+
if (er
|
64312
|
+
&& (er.code === "EACCES" || er.code === "EPERM" || er.code === "EBUSY")
|
64313
|
+
&& Date.now() - start < 60000) {
|
64314
|
+
setTimeout(function() {
|
64315
|
+
fs.stat(to, function (stater, st) {
|
64316
|
+
if (stater && stater.code === "ENOENT")
|
64317
|
+
fs$rename(from, to, CB);
|
64318
|
+
else
|
64319
|
+
cb(er)
|
64320
|
+
})
|
64321
|
+
}, backoff)
|
64322
|
+
if (backoff < 100)
|
64323
|
+
backoff += 10;
|
64324
|
+
return;
|
64325
|
+
}
|
64326
|
+
if (cb) cb(er)
|
64327
|
+
})
|
64328
|
+
}
|
64329
|
+
if (Object.setPrototypeOf) Object.setPrototypeOf(rename, fs$rename)
|
64330
|
+
return rename
|
64331
|
+
})(fs.rename)
|
64332
|
+
}
|
64333
|
+
|
64334
|
+
// if read() returns EAGAIN, then just try it again.
|
64335
|
+
fs.read = typeof fs.read !== 'function' ? fs.read
|
64336
|
+
: (function (fs$read) {
|
64337
|
+
function read (fd, buffer, offset, length, position, callback_) {
|
64338
|
+
var callback
|
64339
|
+
if (callback_ && typeof callback_ === 'function') {
|
64340
|
+
var eagCounter = 0
|
64341
|
+
callback = function (er, _, __) {
|
64342
|
+
if (er && er.code === 'EAGAIN' && eagCounter < 10) {
|
64343
|
+
eagCounter ++
|
64344
|
+
return fs$read.call(fs, fd, buffer, offset, length, position, callback)
|
64345
|
+
}
|
64346
|
+
callback_.apply(this, arguments)
|
64347
|
+
}
|
64348
|
+
}
|
64349
|
+
return fs$read.call(fs, fd, buffer, offset, length, position, callback)
|
64350
|
+
}
|
64351
|
+
|
64352
|
+
// This ensures `util.promisify` works as it does for native `fs.read`.
|
64353
|
+
if (Object.setPrototypeOf) Object.setPrototypeOf(read, fs$read)
|
64354
|
+
return read
|
64355
|
+
})(fs.read)
|
64356
|
+
|
64357
|
+
fs.readSync = typeof fs.readSync !== 'function' ? fs.readSync
|
64358
|
+
: (function (fs$readSync) { return function (fd, buffer, offset, length, position) {
|
64359
|
+
var eagCounter = 0
|
64360
|
+
while (true) {
|
64361
|
+
try {
|
64362
|
+
return fs$readSync.call(fs, fd, buffer, offset, length, position)
|
64363
|
+
} catch (er) {
|
64364
|
+
if (er.code === 'EAGAIN' && eagCounter < 10) {
|
64365
|
+
eagCounter ++
|
64366
|
+
continue
|
64367
|
+
}
|
64368
|
+
throw er
|
64369
|
+
}
|
64370
|
+
}
|
64371
|
+
}})(fs.readSync)
|
64372
|
+
|
64373
|
+
function patchLchmod (fs) {
|
64374
|
+
fs.lchmod = function (path, mode, callback) {
|
64375
|
+
fs.open( path
|
64376
|
+
, constants.O_WRONLY | constants.O_SYMLINK
|
64377
|
+
, mode
|
64378
|
+
, function (err, fd) {
|
64379
|
+
if (err) {
|
64380
|
+
if (callback) callback(err)
|
64381
|
+
return
|
64382
|
+
}
|
64383
|
+
// prefer to return the chmod error, if one occurs,
|
64384
|
+
// but still try to close, and report closing errors if they occur.
|
64385
|
+
fs.fchmod(fd, mode, function (err) {
|
64386
|
+
fs.close(fd, function(err2) {
|
64387
|
+
if (callback) callback(err || err2)
|
64388
|
+
})
|
64389
|
+
})
|
64390
|
+
})
|
64391
|
+
}
|
64392
|
+
|
64393
|
+
fs.lchmodSync = function (path, mode) {
|
64394
|
+
var fd = fs.openSync(path, constants.O_WRONLY | constants.O_SYMLINK, mode)
|
64395
|
+
|
64396
|
+
// prefer to return the chmod error, if one occurs,
|
64397
|
+
// but still try to close, and report closing errors if they occur.
|
64398
|
+
var threw = true
|
64399
|
+
var ret
|
64400
|
+
try {
|
64401
|
+
ret = fs.fchmodSync(fd, mode)
|
64402
|
+
threw = false
|
64403
|
+
} finally {
|
64404
|
+
if (threw) {
|
64405
|
+
try {
|
64406
|
+
fs.closeSync(fd)
|
64407
|
+
} catch (er) {}
|
64408
|
+
} else {
|
64409
|
+
fs.closeSync(fd)
|
64410
|
+
}
|
64411
|
+
}
|
64412
|
+
return ret
|
64413
|
+
}
|
64414
|
+
}
|
64415
|
+
|
64416
|
+
function patchLutimes (fs) {
|
64417
|
+
if (constants.hasOwnProperty("O_SYMLINK") && fs.futimes) {
|
64418
|
+
fs.lutimes = function (path, at, mt, cb) {
|
64419
|
+
fs.open(path, constants.O_SYMLINK, function (er, fd) {
|
64420
|
+
if (er) {
|
64421
|
+
if (cb) cb(er)
|
64422
|
+
return
|
64423
|
+
}
|
64424
|
+
fs.futimes(fd, at, mt, function (er) {
|
64425
|
+
fs.close(fd, function (er2) {
|
64426
|
+
if (cb) cb(er || er2)
|
64427
|
+
})
|
64428
|
+
})
|
64429
|
+
})
|
64430
|
+
}
|
64431
|
+
|
64432
|
+
fs.lutimesSync = function (path, at, mt) {
|
64433
|
+
var fd = fs.openSync(path, constants.O_SYMLINK)
|
64434
|
+
var ret
|
64435
|
+
var threw = true
|
64436
|
+
try {
|
64437
|
+
ret = fs.futimesSync(fd, at, mt)
|
64438
|
+
threw = false
|
64439
|
+
} finally {
|
64440
|
+
if (threw) {
|
64441
|
+
try {
|
64442
|
+
fs.closeSync(fd)
|
64443
|
+
} catch (er) {}
|
64444
|
+
} else {
|
64445
|
+
fs.closeSync(fd)
|
64446
|
+
}
|
64447
|
+
}
|
64448
|
+
return ret
|
64449
|
+
}
|
64450
|
+
|
64451
|
+
} else if (fs.futimes) {
|
64452
|
+
fs.lutimes = function (_a, _b, _c, cb) { if (cb) process.nextTick(cb) }
|
64453
|
+
fs.lutimesSync = function () {}
|
64454
|
+
}
|
64455
|
+
}
|
64456
|
+
|
64457
|
+
function chmodFix (orig) {
|
64458
|
+
if (!orig) return orig
|
64459
|
+
return function (target, mode, cb) {
|
64460
|
+
return orig.call(fs, target, mode, function (er) {
|
64461
|
+
if (chownErOk(er)) er = null
|
64462
|
+
if (cb) cb.apply(this, arguments)
|
64463
|
+
})
|
64464
|
+
}
|
64465
|
+
}
|
64466
|
+
|
64467
|
+
function chmodFixSync (orig) {
|
64468
|
+
if (!orig) return orig
|
64469
|
+
return function (target, mode) {
|
64470
|
+
try {
|
64471
|
+
return orig.call(fs, target, mode)
|
64472
|
+
} catch (er) {
|
64473
|
+
if (!chownErOk(er)) throw er
|
64474
|
+
}
|
64475
|
+
}
|
64476
|
+
}
|
64477
|
+
|
64478
|
+
|
64479
|
+
function chownFix (orig) {
|
64480
|
+
if (!orig) return orig
|
64481
|
+
return function (target, uid, gid, cb) {
|
64482
|
+
return orig.call(fs, target, uid, gid, function (er) {
|
64483
|
+
if (chownErOk(er)) er = null
|
64484
|
+
if (cb) cb.apply(this, arguments)
|
64485
|
+
})
|
64486
|
+
}
|
64487
|
+
}
|
64488
|
+
|
64489
|
+
function chownFixSync (orig) {
|
64490
|
+
if (!orig) return orig
|
64491
|
+
return function (target, uid, gid) {
|
64492
|
+
try {
|
64493
|
+
return orig.call(fs, target, uid, gid)
|
64494
|
+
} catch (er) {
|
64495
|
+
if (!chownErOk(er)) throw er
|
64496
|
+
}
|
64497
|
+
}
|
64498
|
+
}
|
64499
|
+
|
64500
|
+
function statFix (orig) {
|
64501
|
+
if (!orig) return orig
|
64502
|
+
// Older versions of Node erroneously returned signed integers for
|
64503
|
+
// uid + gid.
|
64504
|
+
return function (target, options, cb) {
|
64505
|
+
if (typeof options === 'function') {
|
64506
|
+
cb = options
|
64507
|
+
options = null
|
64508
|
+
}
|
64509
|
+
function callback (er, stats) {
|
64510
|
+
if (stats) {
|
64511
|
+
if (stats.uid < 0) stats.uid += 0x100000000
|
64512
|
+
if (stats.gid < 0) stats.gid += 0x100000000
|
64513
|
+
}
|
64514
|
+
if (cb) cb.apply(this, arguments)
|
64515
|
+
}
|
64516
|
+
return options ? orig.call(fs, target, options, callback)
|
64517
|
+
: orig.call(fs, target, callback)
|
64518
|
+
}
|
64519
|
+
}
|
64520
|
+
|
64521
|
+
function statFixSync (orig) {
|
64522
|
+
if (!orig) return orig
|
64523
|
+
// Older versions of Node erroneously returned signed integers for
|
64524
|
+
// uid + gid.
|
64525
|
+
return function (target, options) {
|
64526
|
+
var stats = options ? orig.call(fs, target, options)
|
64527
|
+
: orig.call(fs, target)
|
64528
|
+
if (stats) {
|
64529
|
+
if (stats.uid < 0) stats.uid += 0x100000000
|
64530
|
+
if (stats.gid < 0) stats.gid += 0x100000000
|
64531
|
+
}
|
64532
|
+
return stats;
|
64533
|
+
}
|
64534
|
+
}
|
64535
|
+
|
64536
|
+
// ENOSYS means that the fs doesn't support the op. Just ignore
|
64537
|
+
// that, because it doesn't matter.
|
64538
|
+
//
|
64539
|
+
// if there's no getuid, or if getuid() is something other
|
64540
|
+
// than 0, and the error is EINVAL or EPERM, then just ignore
|
64541
|
+
// it.
|
64542
|
+
//
|
64543
|
+
// This specific case is a silent failure in cp, install, tar,
|
64544
|
+
// and most other unix tools that manage permissions.
|
64545
|
+
//
|
64546
|
+
// When running as root, or if other types of errors are
|
64547
|
+
// encountered, then it's strict.
|
64548
|
+
function chownErOk (er) {
|
64549
|
+
if (!er)
|
64550
|
+
return true
|
64551
|
+
|
64552
|
+
if (er.code === "ENOSYS")
|
64553
|
+
return true
|
64554
|
+
|
64555
|
+
var nonroot = !process.getuid || process.getuid() !== 0
|
64556
|
+
if (nonroot) {
|
64557
|
+
if (er.code === "EINVAL" || er.code === "EPERM")
|
64558
|
+
return true
|
64559
|
+
}
|
64560
|
+
|
64561
|
+
return false
|
64562
|
+
}
|
64563
|
+
}
|
64564
|
+
|
64565
|
+
|
63593
64566
|
/***/ }),
|
63594
64567
|
|
63595
64568
|
/***/ 73661:
|
@@ -88938,7 +89911,7 @@ module.exports = {
|
|
88938
89911
|
|
88939
89912
|
var _fs
|
88940
89913
|
try {
|
88941
|
-
_fs = __webpack_require__(
|
89914
|
+
_fs = __webpack_require__(57156)
|
88942
89915
|
} catch (_) {
|
88943
89916
|
_fs = __webpack_require__(35747)
|
88944
89917
|
}
|
@@ -89079,7 +90052,7 @@ module.exports = jsonfile
|
|
89079
90052
|
|
89080
90053
|
let _fs
|
89081
90054
|
try {
|
89082
|
-
_fs = __webpack_require__(
|
90055
|
+
_fs = __webpack_require__(57156)
|
89083
90056
|
} catch (_) {
|
89084
90057
|
_fs = __webpack_require__(35747)
|
89085
90058
|
}
|
@@ -189294,6 +190267,15 @@ class MissingBuildTarget extends Error {
|
|
189294
190267
|
}
|
189295
190268
|
}
|
189296
190269
|
exports.MissingBuildTarget = MissingBuildTarget;
|
190270
|
+
function supportsRootCommand(turboSemVer) {
|
190271
|
+
if (!turboSemVer) {
|
190272
|
+
return false;
|
190273
|
+
}
|
190274
|
+
if (!semver_1.default.validRange(turboSemVer)) {
|
190275
|
+
return false;
|
190276
|
+
}
|
190277
|
+
return !semver_1.default.intersects(turboSemVer, '<1.8.0');
|
190278
|
+
}
|
189297
190279
|
async function getMonorepoDefaultSettings(projectName, projectPath, relativeToRoot, detectorFilesystem) {
|
189298
190280
|
const [monorepoManager, packageManager] = await Promise.all([
|
189299
190281
|
detect_framework_1.detectFramework({
|
@@ -189341,7 +190323,7 @@ async function getMonorepoDefaultSettings(projectName, projectPath, relativeToRo
|
|
189341
190323
|
}
|
189342
190324
|
let buildCommand = null;
|
189343
190325
|
if (projectPath) {
|
189344
|
-
if (
|
190326
|
+
if (supportsRootCommand(turboSemVer)) {
|
189345
190327
|
buildCommand = `turbo run build`;
|
189346
190328
|
}
|
189347
190329
|
else {
|
@@ -214950,7 +215932,7 @@ module.exports = JSON.parse("[[[0,44],\"disallowed_STD3_valid\"],[[45,46],\"vali
|
|
214950
215932
|
/***/ ((module) => {
|
214951
215933
|
|
214952
215934
|
"use strict";
|
214953
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.18.
|
215935
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.18.5\",\"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 --env node --verbose --bail\",\"test-unit\":\"pnpm test test/unit/\",\"test-e2e\":\"rimraf test/fixtures/integration && pnpm test test/integration-1.test.ts test/integration-2.test.ts test/integration-3.test.ts\",\"test-dev\":\"pnpm test test/dev/\",\"coverage\":\"codecov\",\"build\":\"ts-node ./scripts/build.ts\",\"dev\":\"ts-node ./src/index.ts\"},\"bin\":{\"vc\":\"./dist/index.js\",\"vercel\":\"./dist/index.js\"},\"files\":[\"dist\",\"scripts/preinstall.js\"],\"engines\":{\"node\":\">= 14\"},\"dependencies\":{\"@vercel/build-utils\":\"6.7.1\",\"@vercel/go\":\"2.4.4\",\"@vercel/hydrogen\":\"0.0.62\",\"@vercel/next\":\"3.7.4\",\"@vercel/node\":\"2.10.3\",\"@vercel/python\":\"3.1.58\",\"@vercel/redwood\":\"1.1.14\",\"@vercel/remix-builder\":\"1.8.4\",\"@vercel/ruby\":\"1.3.75\",\"@vercel/static-build\":\"1.3.23\"},\"devDependencies\":{\"@alex_neo/jest-expect-message\":\"1.0.5\",\"@next/env\":\"11.1.2\",\"@sentry/node\":\"5.5.0\",\"@sindresorhus/slugify\":\"0.11.0\",\"@swc/core\":\"1.2.218\",\"@tootallnate/once\":\"1.1.2\",\"@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/ini\":\"1.3.31\",\"@types/inquirer\":\"7.3.1\",\"@types/jest\":\"27.4.1\",\"@types/jest-expect-message\":\"1.0.3\",\"@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\":\"14.18.33\",\"@types/node-fetch\":\"2.5.10\",\"@types/npm-package-arg\":\"6.1.0\",\"@types/pluralize\":\"0.0.29\",\"@types/psl\":\"1.1.0\",\"@types/qs\":\"6.9.7\",\"@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\",\"@types/yauzl-promise\":\"2.1.0\",\"@vercel-internals/get-package-json\":\"*\",\"@vercel-internals/types\":\"*\",\"@vercel/client\":\"12.4.9\",\"@vercel/error-utils\":\"1.0.9\",\"@vercel/frameworks\":\"1.3.4\",\"@vercel/fs-detectors\":\"3.8.10\",\"@vercel/fun\":\"1.0.4\",\"@vercel/ncc\":\"0.24.0\",\"@vercel/routing-utils\":\"2.2.0\",\"@zeit/source-map-support\":\"0.6.2\",\"ajv\":\"6.12.2\",\"alpha-sort\":\"2.0.1\",\"ansi-escapes\":\"4.3.2\",\"ansi-regex\":\"5.0.1\",\"arg\":\"5.0.0\",\"async-listen\":\"1.2.0\",\"async-retry\":\"1.1.3\",\"async-sema\":\"2.1.4\",\"bytes\":\"3.0.0\",\"chalk\":\"4.1.0\",\"chance\":\"1.1.7\",\"chokidar\":\"3.3.1\",\"codecov\":\"3.8.2\",\"cpy\":\"7.2.0\",\"date-fns\":\"1.29.0\",\"debug\":\"3.1.0\",\"dot\":\"1.1.3\",\"dotenv\":\"4.0.0\",\"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\",\"find-up\":\"4.1.0\",\"fs-extra\":\"10.0.0\",\"get-port\":\"5.1.1\",\"git-last-commit\":\"1.0.1\",\"glob\":\"7.1.2\",\"http-proxy\":\"1.18.1\",\"ini\":\"3.0.0\",\"inquirer\":\"7.0.4\",\"is-docker\":\"2.2.1\",\"is-port-reachable\":\"3.1.0\",\"is-url\":\"1.2.2\",\"jaro-winkler\":\"0.2.8\",\"jest-matcher-utils\":\"29.3.1\",\"jsonlines\":\"0.1.1\",\"line-async-iterator\":\"3.0.0\",\"load-json-file\":\"3.0.0\",\"mime-types\":\"2.1.24\",\"minimatch\":\"3.1.2\",\"mri\":\"1.1.5\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.7\",\"npm-package-arg\":\"6.1.0\",\"open\":\"8.4.0\",\"ora\":\"3.4.0\",\"pcre-to-regexp\":\"1.0.0\",\"pluralize\":\"7.0.0\",\"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\":\"6.0.1\",\"stripe\":\"5.1.0\",\"supports-hyperlinks\":\"2.2.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-node\":\"10.9.1\",\"typescript\":\"4.9.4\",\"universal-analytics\":\"0.4.20\",\"utility-types\":\"2.1.0\",\"write-json-file\":\"2.2.0\",\"xdg-app-paths\":\"5.1.0\",\"yauzl-promise\":\"2.1.3\"},\"jest\":{\"preset\":\"ts-jest\",\"globals\":{\"ts-jest\":{\"diagnostics\":false,\"isolatedModules\":true}},\"setupFilesAfterEnv\":[\"@alex_neo/jest-expect-message\"],\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]}}");
|
214954
215936
|
|
214955
215937
|
/***/ }),
|
214956
215938
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "28.18.
|
3
|
+
"version": "28.18.5",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"@vercel/redwood": "1.1.14",
|
42
42
|
"@vercel/remix-builder": "1.8.4",
|
43
43
|
"@vercel/ruby": "1.3.75",
|
44
|
-
"@vercel/static-build": "1.3.
|
44
|
+
"@vercel/static-build": "1.3.23"
|
45
45
|
},
|
46
46
|
"devDependencies": {
|
47
47
|
"@alex_neo/jest-expect-message": "1.0.5",
|
@@ -89,7 +89,7 @@
|
|
89
89
|
"@vercel/client": "12.4.9",
|
90
90
|
"@vercel/error-utils": "1.0.9",
|
91
91
|
"@vercel/frameworks": "1.3.4",
|
92
|
-
"@vercel/fs-detectors": "3.8.
|
92
|
+
"@vercel/fs-detectors": "3.8.10",
|
93
93
|
"@vercel/fun": "1.0.4",
|
94
94
|
"@vercel/ncc": "0.24.0",
|
95
95
|
"@vercel/routing-utils": "2.2.0",
|
@@ -186,5 +186,5 @@
|
|
186
186
|
"<rootDir>/test/**/*.test.ts"
|
187
187
|
]
|
188
188
|
},
|
189
|
-
"gitHead": "
|
189
|
+
"gitHead": "14ece4111aed844a92e0024c5933f41b8ae717a0"
|
190
190
|
}
|