@vercel/ruby 1.3.17 → 1.3.20
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 +264 -269
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
module.exports =
|
|
1
2
|
/******/ (() => { // webpackBootstrap
|
|
2
3
|
/******/ var __webpack_modules__ = ({
|
|
3
4
|
|
|
4
5
|
/***/ 2498:
|
|
5
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6
7
|
|
|
7
|
-
var once =
|
|
8
|
+
var once = __webpack_require__(7197);
|
|
8
9
|
|
|
9
10
|
var noop = function() {};
|
|
10
11
|
|
|
@@ -130,14 +131,14 @@ function clone (obj) {
|
|
|
130
131
|
/***/ }),
|
|
131
132
|
|
|
132
133
|
/***/ 552:
|
|
133
|
-
/***/ ((module, __unused_webpack_exports,
|
|
134
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
134
135
|
|
|
135
|
-
var fs =
|
|
136
|
-
var polyfills =
|
|
137
|
-
var legacy =
|
|
138
|
-
var clone =
|
|
136
|
+
var fs = __webpack_require__(5747)
|
|
137
|
+
var polyfills = __webpack_require__(1290)
|
|
138
|
+
var legacy = __webpack_require__(4410)
|
|
139
|
+
var clone = __webpack_require__(9132)
|
|
139
140
|
|
|
140
|
-
var util =
|
|
141
|
+
var util = __webpack_require__(1669)
|
|
141
142
|
|
|
142
143
|
/* istanbul ignore next - node 0.x polyfill */
|
|
143
144
|
var gracefulQueue
|
|
@@ -218,7 +219,7 @@ if (!fs[gracefulQueue]) {
|
|
|
218
219
|
if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || '')) {
|
|
219
220
|
process.on('exit', function() {
|
|
220
221
|
debug(fs[gracefulQueue])
|
|
221
|
-
|
|
222
|
+
__webpack_require__(2357).equal(fs[gracefulQueue].length, 0)
|
|
222
223
|
})
|
|
223
224
|
}
|
|
224
225
|
}
|
|
@@ -491,9 +492,9 @@ function retry () {
|
|
|
491
492
|
/***/ }),
|
|
492
493
|
|
|
493
494
|
/***/ 4410:
|
|
494
|
-
/***/ ((module, __unused_webpack_exports,
|
|
495
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
495
496
|
|
|
496
|
-
var Stream = (
|
|
497
|
+
var Stream = __webpack_require__(2413).Stream
|
|
497
498
|
|
|
498
499
|
module.exports = legacy
|
|
499
500
|
|
|
@@ -616,9 +617,9 @@ function legacy (fs) {
|
|
|
616
617
|
/***/ }),
|
|
617
618
|
|
|
618
619
|
/***/ 1290:
|
|
619
|
-
/***/ ((module, __unused_webpack_exports,
|
|
620
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
620
621
|
|
|
621
|
-
var constants =
|
|
622
|
+
var constants = __webpack_require__(7619)
|
|
622
623
|
|
|
623
624
|
var origCwd = process.cwd
|
|
624
625
|
var cwd = null
|
|
@@ -965,14 +966,14 @@ function patch (fs) {
|
|
|
965
966
|
/***/ }),
|
|
966
967
|
|
|
967
968
|
/***/ 228:
|
|
968
|
-
/***/ ((module, __unused_webpack_exports,
|
|
969
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
969
970
|
|
|
970
|
-
var fs =
|
|
971
|
+
var fs = __webpack_require__(5747)
|
|
971
972
|
var core
|
|
972
973
|
if (process.platform === 'win32' || global.TESTING_WINDOWS) {
|
|
973
|
-
core =
|
|
974
|
+
core = __webpack_require__(7214)
|
|
974
975
|
} else {
|
|
975
|
-
core =
|
|
976
|
+
core = __webpack_require__(5211)
|
|
976
977
|
}
|
|
977
978
|
|
|
978
979
|
module.exports = isexe
|
|
@@ -1029,12 +1030,12 @@ function sync (path, options) {
|
|
|
1029
1030
|
/***/ }),
|
|
1030
1031
|
|
|
1031
1032
|
/***/ 5211:
|
|
1032
|
-
/***/ ((module, __unused_webpack_exports,
|
|
1033
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1033
1034
|
|
|
1034
1035
|
module.exports = isexe
|
|
1035
1036
|
isexe.sync = sync
|
|
1036
1037
|
|
|
1037
|
-
var fs =
|
|
1038
|
+
var fs = __webpack_require__(5747)
|
|
1038
1039
|
|
|
1039
1040
|
function isexe (path, options, cb) {
|
|
1040
1041
|
fs.stat(path, function (er, stat) {
|
|
@@ -1077,12 +1078,12 @@ function checkMode (stat, options) {
|
|
|
1077
1078
|
/***/ }),
|
|
1078
1079
|
|
|
1079
1080
|
/***/ 7214:
|
|
1080
|
-
/***/ ((module, __unused_webpack_exports,
|
|
1081
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1081
1082
|
|
|
1082
1083
|
module.exports = isexe
|
|
1083
1084
|
isexe.sync = sync
|
|
1084
1085
|
|
|
1085
|
-
var fs =
|
|
1086
|
+
var fs = __webpack_require__(5747)
|
|
1086
1087
|
|
|
1087
1088
|
function checkPathExt (path, options) {
|
|
1088
1089
|
var pathext = options.pathExt !== undefined ?
|
|
@@ -1126,13 +1127,13 @@ function sync (path, options) {
|
|
|
1126
1127
|
/***/ }),
|
|
1127
1128
|
|
|
1128
1129
|
/***/ 1215:
|
|
1129
|
-
/***/ ((module, __unused_webpack_exports,
|
|
1130
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1130
1131
|
|
|
1131
1132
|
var _fs
|
|
1132
1133
|
try {
|
|
1133
|
-
_fs =
|
|
1134
|
+
_fs = __webpack_require__(552)
|
|
1134
1135
|
} catch (_) {
|
|
1135
|
-
_fs =
|
|
1136
|
+
_fs = __webpack_require__(5747)
|
|
1136
1137
|
}
|
|
1137
1138
|
|
|
1138
1139
|
function readFile (file, options, callback) {
|
|
@@ -1267,12 +1268,12 @@ module.exports = jsonfile
|
|
|
1267
1268
|
/***/ }),
|
|
1268
1269
|
|
|
1269
1270
|
/***/ 6281:
|
|
1270
|
-
/***/ ((module, __unused_webpack_exports,
|
|
1271
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1271
1272
|
|
|
1272
1273
|
"use strict";
|
|
1273
1274
|
|
|
1274
1275
|
|
|
1275
|
-
const { PassThrough } =
|
|
1276
|
+
const { PassThrough } = __webpack_require__(2413);
|
|
1276
1277
|
|
|
1277
1278
|
module.exports = function (/*streams...*/) {
|
|
1278
1279
|
var sources = []
|
|
@@ -1331,7 +1332,7 @@ const mimicFn = (to, from) => {
|
|
|
1331
1332
|
|
|
1332
1333
|
module.exports = mimicFn;
|
|
1333
1334
|
// TODO: Remove this for the next major release
|
|
1334
|
-
module.exports
|
|
1335
|
+
module.exports.default = mimicFn;
|
|
1335
1336
|
|
|
1336
1337
|
|
|
1337
1338
|
/***/ }),
|
|
@@ -1356,9 +1357,9 @@ module.exports = function(fn) {
|
|
|
1356
1357
|
/***/ }),
|
|
1357
1358
|
|
|
1358
1359
|
/***/ 7197:
|
|
1359
|
-
/***/ ((module, __unused_webpack_exports,
|
|
1360
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1360
1361
|
|
|
1361
|
-
var wrappy =
|
|
1362
|
+
var wrappy = __webpack_require__(4586)
|
|
1362
1363
|
module.exports = wrappy(once)
|
|
1363
1364
|
module.exports.strict = wrappy(onceStrict)
|
|
1364
1365
|
|
|
@@ -1405,11 +1406,11 @@ function onceStrict (fn) {
|
|
|
1405
1406
|
/***/ }),
|
|
1406
1407
|
|
|
1407
1408
|
/***/ 7462:
|
|
1408
|
-
/***/ ((module, __unused_webpack_exports,
|
|
1409
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1409
1410
|
|
|
1410
1411
|
"use strict";
|
|
1411
1412
|
|
|
1412
|
-
const mimicFn =
|
|
1413
|
+
const mimicFn = __webpack_require__(481);
|
|
1413
1414
|
|
|
1414
1415
|
const calledFunctions = new WeakMap();
|
|
1415
1416
|
|
|
@@ -1449,7 +1450,7 @@ const oneTime = (fn, options = {}) => {
|
|
|
1449
1450
|
|
|
1450
1451
|
module.exports = oneTime;
|
|
1451
1452
|
// TODO: Remove this for the next major release
|
|
1452
|
-
module.exports
|
|
1453
|
+
module.exports.default = oneTime;
|
|
1453
1454
|
|
|
1454
1455
|
module.exports.callCount = fn => {
|
|
1455
1456
|
if (!calledFunctions.has(fn)) {
|
|
@@ -1463,11 +1464,11 @@ module.exports.callCount = fn => {
|
|
|
1463
1464
|
/***/ }),
|
|
1464
1465
|
|
|
1465
1466
|
/***/ 9595:
|
|
1466
|
-
/***/ ((module, __unused_webpack_exports,
|
|
1467
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1467
1468
|
|
|
1468
|
-
var once =
|
|
1469
|
-
var eos =
|
|
1470
|
-
var fs =
|
|
1469
|
+
var once = __webpack_require__(7197)
|
|
1470
|
+
var eos = __webpack_require__(2498)
|
|
1471
|
+
var fs = __webpack_require__(5747) // we only need fs to get the ReadStream and WriteStream prototypes
|
|
1471
1472
|
|
|
1472
1473
|
var noop = function () {}
|
|
1473
1474
|
var ancient = /^v?\.0/.test(process.version)
|
|
@@ -1552,11 +1553,11 @@ module.exports = pump
|
|
|
1552
1553
|
/***/ }),
|
|
1553
1554
|
|
|
1554
1555
|
/***/ 4970:
|
|
1555
|
-
/***/ ((module, __unused_webpack_exports,
|
|
1556
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1556
1557
|
|
|
1557
1558
|
"use strict";
|
|
1558
1559
|
|
|
1559
|
-
var shebangRegex =
|
|
1560
|
+
var shebangRegex = __webpack_require__(1504);
|
|
1560
1561
|
|
|
1561
1562
|
module.exports = function (str) {
|
|
1562
1563
|
var match = str.match(shebangRegex);
|
|
@@ -1589,16 +1590,16 @@ module.exports = /^#!.*/;
|
|
|
1589
1590
|
/***/ }),
|
|
1590
1591
|
|
|
1591
1592
|
/***/ 2028:
|
|
1592
|
-
/***/ ((module, __unused_webpack_exports,
|
|
1593
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1593
1594
|
|
|
1594
1595
|
// Note: since nyc uses this module to output coverage, any lines
|
|
1595
1596
|
// that are in the direct sync flow of nyc's outputCoverage are
|
|
1596
1597
|
// ignored, since we can never get coverage for them.
|
|
1597
|
-
var assert =
|
|
1598
|
-
var signals =
|
|
1598
|
+
var assert = __webpack_require__(2357)
|
|
1599
|
+
var signals = __webpack_require__(19)
|
|
1599
1600
|
var isWin = /^win/i.test(process.platform)
|
|
1600
1601
|
|
|
1601
|
-
var EE =
|
|
1602
|
+
var EE = __webpack_require__(8614)
|
|
1602
1603
|
/* istanbul ignore if */
|
|
1603
1604
|
if (typeof EE !== 'function') {
|
|
1604
1605
|
EE = EE.EventEmitter
|
|
@@ -1876,7 +1877,7 @@ exports.p = function (fn) {
|
|
|
1876
1877
|
/***/ }),
|
|
1877
1878
|
|
|
1878
1879
|
/***/ 8201:
|
|
1879
|
-
/***/ ((module, __unused_webpack_exports,
|
|
1880
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
1880
1881
|
|
|
1881
1882
|
module.exports = which
|
|
1882
1883
|
which.sync = whichSync
|
|
@@ -1885,9 +1886,9 @@ var isWindows = process.platform === 'win32' ||
|
|
|
1885
1886
|
process.env.OSTYPE === 'cygwin' ||
|
|
1886
1887
|
process.env.OSTYPE === 'msys'
|
|
1887
1888
|
|
|
1888
|
-
var path =
|
|
1889
|
+
var path = __webpack_require__(5622)
|
|
1889
1890
|
var COLON = isWindows ? ';' : ':'
|
|
1890
|
-
var isexe =
|
|
1891
|
+
var isexe = __webpack_require__(228)
|
|
1891
1892
|
|
|
1892
1893
|
function getNotFoundError (cmd) {
|
|
1893
1894
|
var er = new Error('not found: ' + cmd)
|
|
@@ -2058,14 +2059,14 @@ function wrappy (fn, cb) {
|
|
|
2058
2059
|
/***/ }),
|
|
2059
2060
|
|
|
2060
2061
|
/***/ 7618:
|
|
2061
|
-
/***/ ((module, __unused_webpack_exports,
|
|
2062
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2062
2063
|
|
|
2063
2064
|
"use strict";
|
|
2064
2065
|
|
|
2065
2066
|
|
|
2066
|
-
const cp =
|
|
2067
|
-
const parse =
|
|
2068
|
-
const enoent =
|
|
2067
|
+
const cp = __webpack_require__(3129);
|
|
2068
|
+
const parse = __webpack_require__(4527);
|
|
2069
|
+
const enoent = __webpack_require__(2773);
|
|
2069
2070
|
|
|
2070
2071
|
function spawn(command, args, options) {
|
|
2071
2072
|
// Parse the arguments
|
|
@@ -2172,17 +2173,17 @@ module.exports = {
|
|
|
2172
2173
|
/***/ }),
|
|
2173
2174
|
|
|
2174
2175
|
/***/ 4527:
|
|
2175
|
-
/***/ ((module, __unused_webpack_exports,
|
|
2176
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2176
2177
|
|
|
2177
2178
|
"use strict";
|
|
2178
2179
|
|
|
2179
2180
|
|
|
2180
|
-
const path =
|
|
2181
|
-
const niceTry =
|
|
2182
|
-
const resolveCommand =
|
|
2183
|
-
const escape =
|
|
2184
|
-
const readShebang =
|
|
2185
|
-
const semver =
|
|
2181
|
+
const path = __webpack_require__(5622);
|
|
2182
|
+
const niceTry = __webpack_require__(7369);
|
|
2183
|
+
const resolveCommand = __webpack_require__(7231);
|
|
2184
|
+
const escape = __webpack_require__(1880);
|
|
2185
|
+
const readShebang = __webpack_require__(2655);
|
|
2186
|
+
const semver = __webpack_require__(8515);
|
|
2186
2187
|
|
|
2187
2188
|
const isWin = process.platform === 'win32';
|
|
2188
2189
|
const isExecutableRegExp = /\.(?:com|exe)$/i;
|
|
@@ -2358,13 +2359,13 @@ module.exports.argument = escapeArgument;
|
|
|
2358
2359
|
/***/ }),
|
|
2359
2360
|
|
|
2360
2361
|
/***/ 2655:
|
|
2361
|
-
/***/ ((module, __unused_webpack_exports,
|
|
2362
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2362
2363
|
|
|
2363
2364
|
"use strict";
|
|
2364
2365
|
|
|
2365
2366
|
|
|
2366
|
-
const fs =
|
|
2367
|
-
const shebangCommand =
|
|
2367
|
+
const fs = __webpack_require__(5747);
|
|
2368
|
+
const shebangCommand = __webpack_require__(4970);
|
|
2368
2369
|
|
|
2369
2370
|
function readShebang(command) {
|
|
2370
2371
|
// Read the first 150 bytes from the file
|
|
@@ -2398,14 +2399,14 @@ module.exports = readShebang;
|
|
|
2398
2399
|
/***/ }),
|
|
2399
2400
|
|
|
2400
2401
|
/***/ 7231:
|
|
2401
|
-
/***/ ((module, __unused_webpack_exports,
|
|
2402
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
2402
2403
|
|
|
2403
2404
|
"use strict";
|
|
2404
2405
|
|
|
2405
2406
|
|
|
2406
|
-
const path =
|
|
2407
|
-
const which =
|
|
2408
|
-
const pathKey =
|
|
2407
|
+
const path = __webpack_require__(5622);
|
|
2408
|
+
const which = __webpack_require__(8201);
|
|
2409
|
+
const pathKey = __webpack_require__(4725)();
|
|
2409
2410
|
|
|
2410
2411
|
function resolveCommandAttempt(parsed, withoutPathExt) {
|
|
2411
2412
|
const cwd = process.cwd();
|
|
@@ -3943,22 +3944,22 @@ function coerce (version) {
|
|
|
3943
3944
|
/***/ }),
|
|
3944
3945
|
|
|
3945
3946
|
/***/ 4237:
|
|
3946
|
-
/***/ ((module, __unused_webpack_exports,
|
|
3947
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
3947
3948
|
|
|
3948
3949
|
"use strict";
|
|
3949
3950
|
|
|
3950
|
-
const path =
|
|
3951
|
-
const childProcess =
|
|
3952
|
-
const crossSpawn =
|
|
3953
|
-
const stripFinalNewline =
|
|
3954
|
-
const npmRunPath =
|
|
3955
|
-
const onetime =
|
|
3956
|
-
const makeError =
|
|
3957
|
-
const normalizeStdio =
|
|
3958
|
-
const {spawnedKill, spawnedCancel, setupTimeout, setExitHandler} =
|
|
3959
|
-
const {handleInput, getSpawnedResult, makeAllStream, validateInputSync} =
|
|
3960
|
-
const {mergePromise, getSpawnedPromise} =
|
|
3961
|
-
const {joinCommand, parseCommand} =
|
|
3951
|
+
const path = __webpack_require__(5622);
|
|
3952
|
+
const childProcess = __webpack_require__(3129);
|
|
3953
|
+
const crossSpawn = __webpack_require__(7618);
|
|
3954
|
+
const stripFinalNewline = __webpack_require__(6831);
|
|
3955
|
+
const npmRunPath = __webpack_require__(721);
|
|
3956
|
+
const onetime = __webpack_require__(7462);
|
|
3957
|
+
const makeError = __webpack_require__(221);
|
|
3958
|
+
const normalizeStdio = __webpack_require__(1885);
|
|
3959
|
+
const {spawnedKill, spawnedCancel, setupTimeout, setExitHandler} = __webpack_require__(432);
|
|
3960
|
+
const {handleInput, getSpawnedResult, makeAllStream, validateInputSync} = __webpack_require__(3304);
|
|
3961
|
+
const {mergePromise, getSpawnedPromise} = __webpack_require__(1459);
|
|
3962
|
+
const {joinCommand, parseCommand} = __webpack_require__(2668);
|
|
3962
3963
|
|
|
3963
3964
|
const DEFAULT_MAX_BUFFER = 1000 * 1000 * 100;
|
|
3964
3965
|
|
|
@@ -4250,12 +4251,12 @@ module.exports = {
|
|
|
4250
4251
|
/***/ }),
|
|
4251
4252
|
|
|
4252
4253
|
/***/ 221:
|
|
4253
|
-
/***/ ((module, __unused_webpack_exports,
|
|
4254
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4254
4255
|
|
|
4255
4256
|
"use strict";
|
|
4256
4257
|
|
|
4257
|
-
const os =
|
|
4258
|
-
const util =
|
|
4258
|
+
const os = __webpack_require__(2087);
|
|
4259
|
+
const util = __webpack_require__(1669);
|
|
4259
4260
|
|
|
4260
4261
|
const getCode = (error, code) => {
|
|
4261
4262
|
if (error && error.code) {
|
|
@@ -4345,13 +4346,13 @@ module.exports = makeError;
|
|
|
4345
4346
|
/***/ }),
|
|
4346
4347
|
|
|
4347
4348
|
/***/ 432:
|
|
4348
|
-
/***/ ((module, __unused_webpack_exports,
|
|
4349
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4349
4350
|
|
|
4350
4351
|
"use strict";
|
|
4351
4352
|
|
|
4352
|
-
const os =
|
|
4353
|
-
const onExit =
|
|
4354
|
-
const pFinally =
|
|
4353
|
+
const os = __webpack_require__(2087);
|
|
4354
|
+
const onExit = __webpack_require__(2028);
|
|
4355
|
+
const pFinally = __webpack_require__(5824);
|
|
4355
4356
|
|
|
4356
4357
|
const DEFAULT_FORCE_KILL_TIMEOUT = 1000 * 5;
|
|
4357
4358
|
|
|
@@ -4577,13 +4578,13 @@ module.exports.node = opts => {
|
|
|
4577
4578
|
/***/ }),
|
|
4578
4579
|
|
|
4579
4580
|
/***/ 3304:
|
|
4580
|
-
/***/ ((module, __unused_webpack_exports,
|
|
4581
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4581
4582
|
|
|
4582
4583
|
"use strict";
|
|
4583
4584
|
|
|
4584
|
-
const isStream =
|
|
4585
|
-
const getStream =
|
|
4586
|
-
const mergeStream =
|
|
4585
|
+
const isStream = __webpack_require__(5845);
|
|
4586
|
+
const getStream = __webpack_require__(7338);
|
|
4587
|
+
const mergeStream = __webpack_require__(6281);
|
|
4587
4588
|
|
|
4588
4589
|
// `input` option
|
|
4589
4590
|
const handleInput = (spawned, input) => {
|
|
@@ -4691,15 +4692,15 @@ module.exports = {
|
|
|
4691
4692
|
/***/ }),
|
|
4692
4693
|
|
|
4693
4694
|
/***/ 4994:
|
|
4694
|
-
/***/ ((module, __unused_webpack_exports,
|
|
4695
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4695
4696
|
|
|
4696
4697
|
"use strict";
|
|
4697
4698
|
|
|
4698
4699
|
|
|
4699
|
-
const fs =
|
|
4700
|
-
const path =
|
|
4701
|
-
const mkdirpSync = (
|
|
4702
|
-
const utimesSync = (
|
|
4700
|
+
const fs = __webpack_require__(552)
|
|
4701
|
+
const path = __webpack_require__(5622)
|
|
4702
|
+
const mkdirpSync = __webpack_require__(9181).mkdirsSync
|
|
4703
|
+
const utimesSync = __webpack_require__(8605).utimesMillisSync
|
|
4703
4704
|
|
|
4704
4705
|
const notExist = Symbol('notExist')
|
|
4705
4706
|
|
|
@@ -4771,7 +4772,7 @@ function copyFile (srcStat, src, dest, opts) {
|
|
|
4771
4772
|
|
|
4772
4773
|
function copyFileFallback (srcStat, src, dest, opts) {
|
|
4773
4774
|
const BUF_LENGTH = 64 * 1024
|
|
4774
|
-
const _buff =
|
|
4775
|
+
const _buff = __webpack_require__(6343)(BUF_LENGTH)
|
|
4775
4776
|
|
|
4776
4777
|
const fdr = fs.openSync(src, 'r')
|
|
4777
4778
|
const fdw = fs.openSync(dest, 'w', srcStat.mode)
|
|
@@ -4892,29 +4893,29 @@ module.exports = copySync
|
|
|
4892
4893
|
/***/ }),
|
|
4893
4894
|
|
|
4894
4895
|
/***/ 9567:
|
|
4895
|
-
/***/ ((module, __unused_webpack_exports,
|
|
4896
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4896
4897
|
|
|
4897
4898
|
"use strict";
|
|
4898
4899
|
|
|
4899
4900
|
|
|
4900
4901
|
module.exports = {
|
|
4901
|
-
copySync:
|
|
4902
|
+
copySync: __webpack_require__(4994)
|
|
4902
4903
|
}
|
|
4903
4904
|
|
|
4904
4905
|
|
|
4905
4906
|
/***/ }),
|
|
4906
4907
|
|
|
4907
4908
|
/***/ 4487:
|
|
4908
|
-
/***/ ((module, __unused_webpack_exports,
|
|
4909
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
4909
4910
|
|
|
4910
4911
|
"use strict";
|
|
4911
4912
|
|
|
4912
4913
|
|
|
4913
|
-
const fs =
|
|
4914
|
-
const path =
|
|
4915
|
-
const mkdirp = (
|
|
4916
|
-
const pathExists = (
|
|
4917
|
-
const utimes = (
|
|
4914
|
+
const fs = __webpack_require__(552)
|
|
4915
|
+
const path = __webpack_require__(5622)
|
|
4916
|
+
const mkdirp = __webpack_require__(9181).mkdirs
|
|
4917
|
+
const pathExists = __webpack_require__(5516).pathExists
|
|
4918
|
+
const utimes = __webpack_require__(8605).utimesMillis
|
|
4918
4919
|
|
|
4919
4920
|
const notExist = Symbol('notExist')
|
|
4920
4921
|
|
|
@@ -5159,30 +5160,30 @@ module.exports = copy
|
|
|
5159
5160
|
/***/ }),
|
|
5160
5161
|
|
|
5161
5162
|
/***/ 8852:
|
|
5162
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5163
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5163
5164
|
|
|
5164
5165
|
"use strict";
|
|
5165
5166
|
|
|
5166
5167
|
|
|
5167
|
-
const u = (
|
|
5168
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
5168
5169
|
module.exports = {
|
|
5169
|
-
copy: u(
|
|
5170
|
+
copy: u(__webpack_require__(4487))
|
|
5170
5171
|
}
|
|
5171
5172
|
|
|
5172
5173
|
|
|
5173
5174
|
/***/ }),
|
|
5174
5175
|
|
|
5175
5176
|
/***/ 2677:
|
|
5176
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5177
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5177
5178
|
|
|
5178
5179
|
"use strict";
|
|
5179
5180
|
|
|
5180
5181
|
|
|
5181
|
-
const u = (
|
|
5182
|
-
const fs =
|
|
5183
|
-
const path =
|
|
5184
|
-
const mkdir =
|
|
5185
|
-
const remove =
|
|
5182
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
5183
|
+
const fs = __webpack_require__(5747)
|
|
5184
|
+
const path = __webpack_require__(5622)
|
|
5185
|
+
const mkdir = __webpack_require__(9181)
|
|
5186
|
+
const remove = __webpack_require__(4879)
|
|
5186
5187
|
|
|
5187
5188
|
const emptyDir = u(function emptyDir (dir, callback) {
|
|
5188
5189
|
callback = callback || function () {}
|
|
@@ -5229,16 +5230,16 @@ module.exports = {
|
|
|
5229
5230
|
/***/ }),
|
|
5230
5231
|
|
|
5231
5232
|
/***/ 2446:
|
|
5232
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5233
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5233
5234
|
|
|
5234
5235
|
"use strict";
|
|
5235
5236
|
|
|
5236
5237
|
|
|
5237
|
-
const u = (
|
|
5238
|
-
const path =
|
|
5239
|
-
const fs =
|
|
5240
|
-
const mkdir =
|
|
5241
|
-
const pathExists = (
|
|
5238
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
5239
|
+
const path = __webpack_require__(5622)
|
|
5240
|
+
const fs = __webpack_require__(552)
|
|
5241
|
+
const mkdir = __webpack_require__(9181)
|
|
5242
|
+
const pathExists = __webpack_require__(5516).pathExists
|
|
5242
5243
|
|
|
5243
5244
|
function createFile (file, callback) {
|
|
5244
5245
|
function makeFile () {
|
|
@@ -5286,14 +5287,14 @@ module.exports = {
|
|
|
5286
5287
|
/***/ }),
|
|
5287
5288
|
|
|
5288
5289
|
/***/ 6004:
|
|
5289
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5290
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5290
5291
|
|
|
5291
5292
|
"use strict";
|
|
5292
5293
|
|
|
5293
5294
|
|
|
5294
|
-
const file =
|
|
5295
|
-
const link =
|
|
5296
|
-
const symlink =
|
|
5295
|
+
const file = __webpack_require__(2446)
|
|
5296
|
+
const link = __webpack_require__(9140)
|
|
5297
|
+
const symlink = __webpack_require__(3674)
|
|
5297
5298
|
|
|
5298
5299
|
module.exports = {
|
|
5299
5300
|
// file
|
|
@@ -5317,16 +5318,16 @@ module.exports = {
|
|
|
5317
5318
|
/***/ }),
|
|
5318
5319
|
|
|
5319
5320
|
/***/ 9140:
|
|
5320
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5321
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5321
5322
|
|
|
5322
5323
|
"use strict";
|
|
5323
5324
|
|
|
5324
5325
|
|
|
5325
|
-
const u = (
|
|
5326
|
-
const path =
|
|
5327
|
-
const fs =
|
|
5328
|
-
const mkdir =
|
|
5329
|
-
const pathExists = (
|
|
5326
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
5327
|
+
const path = __webpack_require__(5622)
|
|
5328
|
+
const fs = __webpack_require__(552)
|
|
5329
|
+
const mkdir = __webpack_require__(9181)
|
|
5330
|
+
const pathExists = __webpack_require__(5516).pathExists
|
|
5330
5331
|
|
|
5331
5332
|
function createLink (srcpath, dstpath, callback) {
|
|
5332
5333
|
function makeLink (srcpath, dstpath) {
|
|
@@ -5386,14 +5387,14 @@ module.exports = {
|
|
|
5386
5387
|
/***/ }),
|
|
5387
5388
|
|
|
5388
5389
|
/***/ 6522:
|
|
5389
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5390
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5390
5391
|
|
|
5391
5392
|
"use strict";
|
|
5392
5393
|
|
|
5393
5394
|
|
|
5394
|
-
const path =
|
|
5395
|
-
const fs =
|
|
5396
|
-
const pathExists = (
|
|
5395
|
+
const path = __webpack_require__(5622)
|
|
5396
|
+
const fs = __webpack_require__(552)
|
|
5397
|
+
const pathExists = __webpack_require__(5516).pathExists
|
|
5397
5398
|
|
|
5398
5399
|
/**
|
|
5399
5400
|
* Function that returns two types of paths, one relative to symlink, and one
|
|
@@ -5493,12 +5494,12 @@ module.exports = {
|
|
|
5493
5494
|
/***/ }),
|
|
5494
5495
|
|
|
5495
5496
|
/***/ 9634:
|
|
5496
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5497
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5497
5498
|
|
|
5498
5499
|
"use strict";
|
|
5499
5500
|
|
|
5500
5501
|
|
|
5501
|
-
const fs =
|
|
5502
|
+
const fs = __webpack_require__(552)
|
|
5502
5503
|
|
|
5503
5504
|
function symlinkType (srcpath, type, callback) {
|
|
5504
5505
|
callback = (typeof type === 'function') ? type : callback
|
|
@@ -5532,27 +5533,27 @@ module.exports = {
|
|
|
5532
5533
|
/***/ }),
|
|
5533
5534
|
|
|
5534
5535
|
/***/ 3674:
|
|
5535
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5536
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5536
5537
|
|
|
5537
5538
|
"use strict";
|
|
5538
5539
|
|
|
5539
5540
|
|
|
5540
|
-
const u = (
|
|
5541
|
-
const path =
|
|
5542
|
-
const fs =
|
|
5543
|
-
const _mkdirs =
|
|
5541
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
5542
|
+
const path = __webpack_require__(5622)
|
|
5543
|
+
const fs = __webpack_require__(552)
|
|
5544
|
+
const _mkdirs = __webpack_require__(9181)
|
|
5544
5545
|
const mkdirs = _mkdirs.mkdirs
|
|
5545
5546
|
const mkdirsSync = _mkdirs.mkdirsSync
|
|
5546
5547
|
|
|
5547
|
-
const _symlinkPaths =
|
|
5548
|
+
const _symlinkPaths = __webpack_require__(6522)
|
|
5548
5549
|
const symlinkPaths = _symlinkPaths.symlinkPaths
|
|
5549
5550
|
const symlinkPathsSync = _symlinkPaths.symlinkPathsSync
|
|
5550
5551
|
|
|
5551
|
-
const _symlinkType =
|
|
5552
|
+
const _symlinkType = __webpack_require__(9634)
|
|
5552
5553
|
const symlinkType = _symlinkType.symlinkType
|
|
5553
5554
|
const symlinkTypeSync = _symlinkType.symlinkTypeSync
|
|
5554
5555
|
|
|
5555
|
-
const pathExists = (
|
|
5556
|
+
const pathExists = __webpack_require__(5516).pathExists
|
|
5556
5557
|
|
|
5557
5558
|
function createSymlink (srcpath, dstpath, type, callback) {
|
|
5558
5559
|
callback = (typeof type === 'function') ? type : callback
|
|
@@ -5603,14 +5604,14 @@ module.exports = {
|
|
|
5603
5604
|
/***/ }),
|
|
5604
5605
|
|
|
5605
5606
|
/***/ 893:
|
|
5606
|
-
/***/ ((__unused_webpack_module, exports,
|
|
5607
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
5607
5608
|
|
|
5608
5609
|
"use strict";
|
|
5609
5610
|
|
|
5610
5611
|
// This is adapted from https://github.com/normalize/mz
|
|
5611
5612
|
// Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors
|
|
5612
|
-
const u = (
|
|
5613
|
-
const fs =
|
|
5613
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
5614
|
+
const fs = __webpack_require__(552)
|
|
5614
5615
|
|
|
5615
5616
|
const api = [
|
|
5616
5617
|
'access',
|
|
@@ -5715,7 +5716,7 @@ exports.write = function (fd, buffer, ...args) {
|
|
|
5715
5716
|
/***/ }),
|
|
5716
5717
|
|
|
5717
5718
|
/***/ 5392:
|
|
5718
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5719
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5719
5720
|
|
|
5720
5721
|
"use strict";
|
|
5721
5722
|
|
|
@@ -5723,24 +5724,24 @@ exports.write = function (fd, buffer, ...args) {
|
|
|
5723
5724
|
module.exports = Object.assign(
|
|
5724
5725
|
{},
|
|
5725
5726
|
// Export promiseified graceful-fs:
|
|
5726
|
-
|
|
5727
|
+
__webpack_require__(893),
|
|
5727
5728
|
// Export extra methods:
|
|
5728
|
-
|
|
5729
|
-
|
|
5730
|
-
|
|
5731
|
-
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
|
|
5735
|
-
|
|
5736
|
-
|
|
5737
|
-
|
|
5738
|
-
|
|
5729
|
+
__webpack_require__(9567),
|
|
5730
|
+
__webpack_require__(8852),
|
|
5731
|
+
__webpack_require__(2677),
|
|
5732
|
+
__webpack_require__(6004),
|
|
5733
|
+
__webpack_require__(3960),
|
|
5734
|
+
__webpack_require__(9181),
|
|
5735
|
+
__webpack_require__(4168),
|
|
5736
|
+
__webpack_require__(7819),
|
|
5737
|
+
__webpack_require__(3849),
|
|
5738
|
+
__webpack_require__(5516),
|
|
5739
|
+
__webpack_require__(4879)
|
|
5739
5740
|
)
|
|
5740
5741
|
|
|
5741
5742
|
// Export fs.promises as a getter property so that we don't trigger
|
|
5742
5743
|
// ExperimentalWarning before fs.promises is actually accessed.
|
|
5743
|
-
const fs =
|
|
5744
|
+
const fs = __webpack_require__(5747)
|
|
5744
5745
|
if (Object.getOwnPropertyDescriptor(fs, 'promises')) {
|
|
5745
5746
|
Object.defineProperty(module.exports, "promises", ({
|
|
5746
5747
|
get () { return fs.promises }
|
|
@@ -5751,16 +5752,16 @@ if (Object.getOwnPropertyDescriptor(fs, 'promises')) {
|
|
|
5751
5752
|
/***/ }),
|
|
5752
5753
|
|
|
5753
5754
|
/***/ 3960:
|
|
5754
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5755
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5755
5756
|
|
|
5756
5757
|
"use strict";
|
|
5757
5758
|
|
|
5758
5759
|
|
|
5759
|
-
const u = (
|
|
5760
|
-
const jsonFile =
|
|
5760
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
5761
|
+
const jsonFile = __webpack_require__(2855)
|
|
5761
5762
|
|
|
5762
|
-
jsonFile.outputJson = u(
|
|
5763
|
-
jsonFile.outputJsonSync =
|
|
5763
|
+
jsonFile.outputJson = u(__webpack_require__(7583))
|
|
5764
|
+
jsonFile.outputJsonSync = __webpack_require__(3719)
|
|
5764
5765
|
// aliases
|
|
5765
5766
|
jsonFile.outputJSON = jsonFile.outputJson
|
|
5766
5767
|
jsonFile.outputJSONSync = jsonFile.outputJsonSync
|
|
@@ -5775,13 +5776,13 @@ module.exports = jsonFile
|
|
|
5775
5776
|
/***/ }),
|
|
5776
5777
|
|
|
5777
5778
|
/***/ 2855:
|
|
5778
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5779
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5779
5780
|
|
|
5780
5781
|
"use strict";
|
|
5781
5782
|
|
|
5782
5783
|
|
|
5783
|
-
const u = (
|
|
5784
|
-
const jsonFile =
|
|
5784
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
5785
|
+
const jsonFile = __webpack_require__(1215)
|
|
5785
5786
|
|
|
5786
5787
|
module.exports = {
|
|
5787
5788
|
// jsonfile exports
|
|
@@ -5795,15 +5796,15 @@ module.exports = {
|
|
|
5795
5796
|
/***/ }),
|
|
5796
5797
|
|
|
5797
5798
|
/***/ 3719:
|
|
5798
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5799
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5799
5800
|
|
|
5800
5801
|
"use strict";
|
|
5801
5802
|
|
|
5802
5803
|
|
|
5803
|
-
const fs =
|
|
5804
|
-
const path =
|
|
5805
|
-
const mkdir =
|
|
5806
|
-
const jsonFile =
|
|
5804
|
+
const fs = __webpack_require__(552)
|
|
5805
|
+
const path = __webpack_require__(5622)
|
|
5806
|
+
const mkdir = __webpack_require__(9181)
|
|
5807
|
+
const jsonFile = __webpack_require__(2855)
|
|
5807
5808
|
|
|
5808
5809
|
function outputJsonSync (file, data, options) {
|
|
5809
5810
|
const dir = path.dirname(file)
|
|
@@ -5821,15 +5822,15 @@ module.exports = outputJsonSync
|
|
|
5821
5822
|
/***/ }),
|
|
5822
5823
|
|
|
5823
5824
|
/***/ 7583:
|
|
5824
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5825
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5825
5826
|
|
|
5826
5827
|
"use strict";
|
|
5827
5828
|
|
|
5828
5829
|
|
|
5829
|
-
const path =
|
|
5830
|
-
const mkdir =
|
|
5831
|
-
const pathExists = (
|
|
5832
|
-
const jsonFile =
|
|
5830
|
+
const path = __webpack_require__(5622)
|
|
5831
|
+
const mkdir = __webpack_require__(9181)
|
|
5832
|
+
const pathExists = __webpack_require__(5516).pathExists
|
|
5833
|
+
const jsonFile = __webpack_require__(2855)
|
|
5833
5834
|
|
|
5834
5835
|
function outputJson (file, data, options, callback) {
|
|
5835
5836
|
if (typeof options === 'function') {
|
|
@@ -5856,13 +5857,13 @@ module.exports = outputJson
|
|
|
5856
5857
|
/***/ }),
|
|
5857
5858
|
|
|
5858
5859
|
/***/ 9181:
|
|
5859
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5860
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5860
5861
|
|
|
5861
5862
|
"use strict";
|
|
5862
5863
|
|
|
5863
|
-
const u = (
|
|
5864
|
-
const mkdirs = u(
|
|
5865
|
-
const mkdirsSync =
|
|
5864
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
5865
|
+
const mkdirs = u(__webpack_require__(7718))
|
|
5866
|
+
const mkdirsSync = __webpack_require__(1275)
|
|
5866
5867
|
|
|
5867
5868
|
module.exports = {
|
|
5868
5869
|
mkdirs,
|
|
@@ -5878,14 +5879,14 @@ module.exports = {
|
|
|
5878
5879
|
/***/ }),
|
|
5879
5880
|
|
|
5880
5881
|
/***/ 1275:
|
|
5881
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5882
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5882
5883
|
|
|
5883
5884
|
"use strict";
|
|
5884
5885
|
|
|
5885
5886
|
|
|
5886
|
-
const fs =
|
|
5887
|
-
const path =
|
|
5888
|
-
const invalidWin32Path = (
|
|
5887
|
+
const fs = __webpack_require__(552)
|
|
5888
|
+
const path = __webpack_require__(5622)
|
|
5889
|
+
const invalidWin32Path = __webpack_require__(3727).invalidWin32Path
|
|
5889
5890
|
|
|
5890
5891
|
const o777 = parseInt('0777', 8)
|
|
5891
5892
|
|
|
@@ -5940,14 +5941,14 @@ module.exports = mkdirsSync
|
|
|
5940
5941
|
/***/ }),
|
|
5941
5942
|
|
|
5942
5943
|
/***/ 7718:
|
|
5943
|
-
/***/ ((module, __unused_webpack_exports,
|
|
5944
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
5944
5945
|
|
|
5945
5946
|
"use strict";
|
|
5946
5947
|
|
|
5947
5948
|
|
|
5948
|
-
const fs =
|
|
5949
|
-
const path =
|
|
5950
|
-
const invalidWin32Path = (
|
|
5949
|
+
const fs = __webpack_require__(552)
|
|
5950
|
+
const path = __webpack_require__(5622)
|
|
5951
|
+
const invalidWin32Path = __webpack_require__(3727).invalidWin32Path
|
|
5951
5952
|
|
|
5952
5953
|
const o777 = parseInt('0777', 8)
|
|
5953
5954
|
|
|
@@ -6011,12 +6012,12 @@ module.exports = mkdirs
|
|
|
6011
6012
|
/***/ }),
|
|
6012
6013
|
|
|
6013
6014
|
/***/ 3727:
|
|
6014
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6015
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6015
6016
|
|
|
6016
6017
|
"use strict";
|
|
6017
6018
|
|
|
6018
6019
|
|
|
6019
|
-
const path =
|
|
6020
|
+
const path = __webpack_require__(5622)
|
|
6020
6021
|
|
|
6021
6022
|
// get drive on windows
|
|
6022
6023
|
function getRootPath (p) {
|
|
@@ -6044,17 +6045,17 @@ module.exports = {
|
|
|
6044
6045
|
/***/ }),
|
|
6045
6046
|
|
|
6046
6047
|
/***/ 4168:
|
|
6047
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6048
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6048
6049
|
|
|
6049
6050
|
"use strict";
|
|
6050
6051
|
|
|
6051
6052
|
|
|
6052
|
-
const fs =
|
|
6053
|
-
const path =
|
|
6054
|
-
const copySync = (
|
|
6055
|
-
const removeSync = (
|
|
6056
|
-
const mkdirpSync = (
|
|
6057
|
-
const buffer =
|
|
6053
|
+
const fs = __webpack_require__(552)
|
|
6054
|
+
const path = __webpack_require__(5622)
|
|
6055
|
+
const copySync = __webpack_require__(9567).copySync
|
|
6056
|
+
const removeSync = __webpack_require__(4879).removeSync
|
|
6057
|
+
const mkdirpSync = __webpack_require__(9181).mkdirsSync
|
|
6058
|
+
const buffer = __webpack_require__(6343)
|
|
6058
6059
|
|
|
6059
6060
|
function moveSync (src, dest, options) {
|
|
6060
6061
|
options = options || {}
|
|
@@ -6169,18 +6170,18 @@ module.exports = {
|
|
|
6169
6170
|
/***/ }),
|
|
6170
6171
|
|
|
6171
6172
|
/***/ 7819:
|
|
6172
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6173
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6173
6174
|
|
|
6174
6175
|
"use strict";
|
|
6175
6176
|
|
|
6176
6177
|
|
|
6177
|
-
const u = (
|
|
6178
|
-
const fs =
|
|
6179
|
-
const path =
|
|
6180
|
-
const copy = (
|
|
6181
|
-
const remove = (
|
|
6182
|
-
const mkdirp = (
|
|
6183
|
-
const pathExists = (
|
|
6178
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
6179
|
+
const fs = __webpack_require__(552)
|
|
6180
|
+
const path = __webpack_require__(5622)
|
|
6181
|
+
const copy = __webpack_require__(8852).copy
|
|
6182
|
+
const remove = __webpack_require__(4879).remove
|
|
6183
|
+
const mkdirp = __webpack_require__(9181).mkdirp
|
|
6184
|
+
const pathExists = __webpack_require__(5516).pathExists
|
|
6184
6185
|
|
|
6185
6186
|
function move (src, dest, opts, cb) {
|
|
6186
6187
|
if (typeof opts === 'function') {
|
|
@@ -6259,16 +6260,16 @@ module.exports = {
|
|
|
6259
6260
|
/***/ }),
|
|
6260
6261
|
|
|
6261
6262
|
/***/ 3849:
|
|
6262
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6263
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6263
6264
|
|
|
6264
6265
|
"use strict";
|
|
6265
6266
|
|
|
6266
6267
|
|
|
6267
|
-
const u = (
|
|
6268
|
-
const fs =
|
|
6269
|
-
const path =
|
|
6270
|
-
const mkdir =
|
|
6271
|
-
const pathExists = (
|
|
6268
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
6269
|
+
const fs = __webpack_require__(552)
|
|
6270
|
+
const path = __webpack_require__(5622)
|
|
6271
|
+
const mkdir = __webpack_require__(9181)
|
|
6272
|
+
const pathExists = __webpack_require__(5516).pathExists
|
|
6272
6273
|
|
|
6273
6274
|
function outputFile (file, data, encoding, callback) {
|
|
6274
6275
|
if (typeof encoding === 'function') {
|
|
@@ -6307,12 +6308,12 @@ module.exports = {
|
|
|
6307
6308
|
/***/ }),
|
|
6308
6309
|
|
|
6309
6310
|
/***/ 5516:
|
|
6310
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6311
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6311
6312
|
|
|
6312
6313
|
"use strict";
|
|
6313
6314
|
|
|
6314
|
-
const u = (
|
|
6315
|
-
const fs =
|
|
6315
|
+
const u = __webpack_require__(2703)/* .fromPromise */ .p
|
|
6316
|
+
const fs = __webpack_require__(893)
|
|
6316
6317
|
|
|
6317
6318
|
function pathExists (path) {
|
|
6318
6319
|
return fs.access(path).then(() => true).catch(() => false)
|
|
@@ -6327,13 +6328,13 @@ module.exports = {
|
|
|
6327
6328
|
/***/ }),
|
|
6328
6329
|
|
|
6329
6330
|
/***/ 4879:
|
|
6330
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6331
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6331
6332
|
|
|
6332
6333
|
"use strict";
|
|
6333
6334
|
|
|
6334
6335
|
|
|
6335
|
-
const u = (
|
|
6336
|
-
const rimraf =
|
|
6336
|
+
const u = __webpack_require__(2703)/* .fromCallback */ .E
|
|
6337
|
+
const rimraf = __webpack_require__(7137)
|
|
6337
6338
|
|
|
6338
6339
|
module.exports = {
|
|
6339
6340
|
remove: u(rimraf),
|
|
@@ -6344,14 +6345,14 @@ module.exports = {
|
|
|
6344
6345
|
/***/ }),
|
|
6345
6346
|
|
|
6346
6347
|
/***/ 7137:
|
|
6347
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6348
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6348
6349
|
|
|
6349
6350
|
"use strict";
|
|
6350
6351
|
|
|
6351
6352
|
|
|
6352
|
-
const fs =
|
|
6353
|
-
const path =
|
|
6354
|
-
const assert =
|
|
6353
|
+
const fs = __webpack_require__(552)
|
|
6354
|
+
const path = __webpack_require__(5622)
|
|
6355
|
+
const assert = __webpack_require__(2357)
|
|
6355
6356
|
|
|
6356
6357
|
const isWindows = (process.platform === 'win32')
|
|
6357
6358
|
|
|
@@ -6686,14 +6687,14 @@ module.exports = function (size) {
|
|
|
6686
6687
|
/***/ }),
|
|
6687
6688
|
|
|
6688
6689
|
/***/ 8605:
|
|
6689
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6690
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6690
6691
|
|
|
6691
6692
|
"use strict";
|
|
6692
6693
|
|
|
6693
6694
|
|
|
6694
|
-
const fs =
|
|
6695
|
-
const os =
|
|
6696
|
-
const path =
|
|
6695
|
+
const fs = __webpack_require__(552)
|
|
6696
|
+
const os = __webpack_require__(2087)
|
|
6697
|
+
const path = __webpack_require__(5622)
|
|
6697
6698
|
|
|
6698
6699
|
// HFS, ext{2,3}, FAT do not, Node.js v0.10 does not
|
|
6699
6700
|
function hasMillisResSync () {
|
|
@@ -6773,11 +6774,11 @@ module.exports = {
|
|
|
6773
6774
|
/***/ }),
|
|
6774
6775
|
|
|
6775
6776
|
/***/ 6050:
|
|
6776
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6777
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6777
6778
|
|
|
6778
6779
|
"use strict";
|
|
6779
6780
|
|
|
6780
|
-
const {PassThrough: PassThroughStream} =
|
|
6781
|
+
const {PassThrough: PassThroughStream} = __webpack_require__(2413);
|
|
6781
6782
|
|
|
6782
6783
|
module.exports = options => {
|
|
6783
6784
|
options = {...options};
|
|
@@ -6833,12 +6834,12 @@ module.exports = options => {
|
|
|
6833
6834
|
/***/ }),
|
|
6834
6835
|
|
|
6835
6836
|
/***/ 7338:
|
|
6836
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6837
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6837
6838
|
|
|
6838
6839
|
"use strict";
|
|
6839
6840
|
|
|
6840
|
-
const pump =
|
|
6841
|
-
const bufferStream =
|
|
6841
|
+
const pump = __webpack_require__(9595);
|
|
6842
|
+
const bufferStream = __webpack_require__(6050);
|
|
6842
6843
|
|
|
6843
6844
|
class MaxBufferError extends Error {
|
|
6844
6845
|
constructor() {
|
|
@@ -6890,7 +6891,7 @@ async function getStream(inputStream, options) {
|
|
|
6890
6891
|
|
|
6891
6892
|
module.exports = getStream;
|
|
6892
6893
|
// TODO: Remove this for the next major release
|
|
6893
|
-
module.exports
|
|
6894
|
+
module.exports.default = getStream;
|
|
6894
6895
|
module.exports.buffer = (stream, options) => getStream(stream, {...options, encoding: 'buffer'});
|
|
6895
6896
|
module.exports.array = (stream, options) => getStream(stream, {...options, array: true});
|
|
6896
6897
|
module.exports.MaxBufferError = MaxBufferError;
|
|
@@ -6936,12 +6937,12 @@ module.exports = isStream;
|
|
|
6936
6937
|
/***/ }),
|
|
6937
6938
|
|
|
6938
6939
|
/***/ 721:
|
|
6939
|
-
/***/ ((module, __unused_webpack_exports,
|
|
6940
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6940
6941
|
|
|
6941
6942
|
"use strict";
|
|
6942
6943
|
|
|
6943
|
-
const path =
|
|
6944
|
-
const pathKey =
|
|
6944
|
+
const path = __webpack_require__(5622);
|
|
6945
|
+
const pathKey = __webpack_require__(572);
|
|
6945
6946
|
|
|
6946
6947
|
const npmRunPath = options => {
|
|
6947
6948
|
options = {
|
|
@@ -6968,7 +6969,7 @@ const npmRunPath = options => {
|
|
|
6968
6969
|
|
|
6969
6970
|
module.exports = npmRunPath;
|
|
6970
6971
|
// TODO: Remove this for the next major release
|
|
6971
|
-
module.exports
|
|
6972
|
+
module.exports.default = npmRunPath;
|
|
6972
6973
|
|
|
6973
6974
|
module.exports.env = options => {
|
|
6974
6975
|
options = {
|
|
@@ -7007,7 +7008,7 @@ const pathKey = (options = {}) => {
|
|
|
7007
7008
|
|
|
7008
7009
|
module.exports = pathKey;
|
|
7009
7010
|
// TODO: Remove this for the next major release
|
|
7010
|
-
module.exports
|
|
7011
|
+
module.exports.default = pathKey;
|
|
7011
7012
|
|
|
7012
7013
|
|
|
7013
7014
|
/***/ }),
|
|
@@ -8610,7 +8611,7 @@ function coerce (version, options) {
|
|
|
8610
8611
|
/***/ }),
|
|
8611
8612
|
|
|
8612
8613
|
/***/ 2178:
|
|
8613
|
-
/***/ (function(__unused_webpack_module, exports,
|
|
8614
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
8614
8615
|
|
|
8615
8616
|
"use strict";
|
|
8616
8617
|
|
|
@@ -8619,11 +8620,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
8619
8620
|
};
|
|
8620
8621
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
8621
8622
|
exports.build = exports.version = void 0;
|
|
8622
|
-
const path_1 =
|
|
8623
|
-
const execa_1 = __importDefault(
|
|
8624
|
-
const fs_extra_1 =
|
|
8625
|
-
const build_utils_1 =
|
|
8626
|
-
const install_ruby_1 =
|
|
8623
|
+
const path_1 = __webpack_require__(5622);
|
|
8624
|
+
const execa_1 = __importDefault(__webpack_require__(4237));
|
|
8625
|
+
const fs_extra_1 = __webpack_require__(5392);
|
|
8626
|
+
const build_utils_1 = __webpack_require__(3445);
|
|
8627
|
+
const install_ruby_1 = __webpack_require__(2421);
|
|
8627
8628
|
async function matchPaths(configPatterns, workPath) {
|
|
8628
8629
|
const patterns = typeof configPatterns === 'string' ? [configPatterns] : configPatterns;
|
|
8629
8630
|
if (!patterns) {
|
|
@@ -8777,7 +8778,7 @@ exports.build = build;
|
|
|
8777
8778
|
/***/ }),
|
|
8778
8779
|
|
|
8779
8780
|
/***/ 2421:
|
|
8780
|
-
/***/ (function(__unused_webpack_module, exports,
|
|
8781
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
8781
8782
|
|
|
8782
8783
|
"use strict";
|
|
8783
8784
|
|
|
@@ -8786,10 +8787,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
8786
8787
|
};
|
|
8787
8788
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
8788
8789
|
exports.installBundler = void 0;
|
|
8789
|
-
const path_1 =
|
|
8790
|
-
const semver_1 =
|
|
8791
|
-
const execa_1 = __importDefault(
|
|
8792
|
-
const build_utils_1 =
|
|
8790
|
+
const path_1 = __webpack_require__(5622);
|
|
8791
|
+
const semver_1 = __webpack_require__(2879);
|
|
8792
|
+
const execa_1 = __importDefault(__webpack_require__(4237));
|
|
8793
|
+
const build_utils_1 = __webpack_require__(3445);
|
|
8793
8794
|
const allOptions = [
|
|
8794
8795
|
{ major: 2, minor: 7, range: '2.7.x', runtime: 'ruby2.7' },
|
|
8795
8796
|
{
|
|
@@ -8894,7 +8895,7 @@ exports.installBundler = installBundler;
|
|
|
8894
8895
|
|
|
8895
8896
|
/***/ }),
|
|
8896
8897
|
|
|
8897
|
-
/***/
|
|
8898
|
+
/***/ 3445:
|
|
8898
8899
|
/***/ ((module) => {
|
|
8899
8900
|
|
|
8900
8901
|
"use strict";
|
|
@@ -8902,7 +8903,7 @@ module.exports = require("@vercel/build-utils");
|
|
|
8902
8903
|
|
|
8903
8904
|
/***/ }),
|
|
8904
8905
|
|
|
8905
|
-
/***/
|
|
8906
|
+
/***/ 2357:
|
|
8906
8907
|
/***/ ((module) => {
|
|
8907
8908
|
|
|
8908
8909
|
"use strict";
|
|
@@ -8910,7 +8911,7 @@ module.exports = require("assert");
|
|
|
8910
8911
|
|
|
8911
8912
|
/***/ }),
|
|
8912
8913
|
|
|
8913
|
-
/***/
|
|
8914
|
+
/***/ 3129:
|
|
8914
8915
|
/***/ ((module) => {
|
|
8915
8916
|
|
|
8916
8917
|
"use strict";
|
|
@@ -8918,7 +8919,7 @@ module.exports = require("child_process");
|
|
|
8918
8919
|
|
|
8919
8920
|
/***/ }),
|
|
8920
8921
|
|
|
8921
|
-
/***/
|
|
8922
|
+
/***/ 7619:
|
|
8922
8923
|
/***/ ((module) => {
|
|
8923
8924
|
|
|
8924
8925
|
"use strict";
|
|
@@ -8926,7 +8927,7 @@ module.exports = require("constants");
|
|
|
8926
8927
|
|
|
8927
8928
|
/***/ }),
|
|
8928
8929
|
|
|
8929
|
-
/***/
|
|
8930
|
+
/***/ 8614:
|
|
8930
8931
|
/***/ ((module) => {
|
|
8931
8932
|
|
|
8932
8933
|
"use strict";
|
|
@@ -8934,7 +8935,7 @@ module.exports = require("events");
|
|
|
8934
8935
|
|
|
8935
8936
|
/***/ }),
|
|
8936
8937
|
|
|
8937
|
-
/***/
|
|
8938
|
+
/***/ 5747:
|
|
8938
8939
|
/***/ ((module) => {
|
|
8939
8940
|
|
|
8940
8941
|
"use strict";
|
|
@@ -8942,7 +8943,7 @@ module.exports = require("fs");
|
|
|
8942
8943
|
|
|
8943
8944
|
/***/ }),
|
|
8944
8945
|
|
|
8945
|
-
/***/
|
|
8946
|
+
/***/ 2087:
|
|
8946
8947
|
/***/ ((module) => {
|
|
8947
8948
|
|
|
8948
8949
|
"use strict";
|
|
@@ -8950,7 +8951,7 @@ module.exports = require("os");
|
|
|
8950
8951
|
|
|
8951
8952
|
/***/ }),
|
|
8952
8953
|
|
|
8953
|
-
/***/
|
|
8954
|
+
/***/ 5622:
|
|
8954
8955
|
/***/ ((module) => {
|
|
8955
8956
|
|
|
8956
8957
|
"use strict";
|
|
@@ -8958,7 +8959,7 @@ module.exports = require("path");
|
|
|
8958
8959
|
|
|
8959
8960
|
/***/ }),
|
|
8960
8961
|
|
|
8961
|
-
/***/
|
|
8962
|
+
/***/ 2413:
|
|
8962
8963
|
/***/ ((module) => {
|
|
8963
8964
|
|
|
8964
8965
|
"use strict";
|
|
@@ -8966,7 +8967,7 @@ module.exports = require("stream");
|
|
|
8966
8967
|
|
|
8967
8968
|
/***/ }),
|
|
8968
8969
|
|
|
8969
|
-
/***/
|
|
8970
|
+
/***/ 1669:
|
|
8970
8971
|
/***/ ((module) => {
|
|
8971
8972
|
|
|
8972
8973
|
"use strict";
|
|
@@ -8980,11 +8981,10 @@ module.exports = require("util");
|
|
|
8980
8981
|
/******/ var __webpack_module_cache__ = {};
|
|
8981
8982
|
/******/
|
|
8982
8983
|
/******/ // The require function
|
|
8983
|
-
/******/ function
|
|
8984
|
+
/******/ function __webpack_require__(moduleId) {
|
|
8984
8985
|
/******/ // Check if module is in cache
|
|
8985
|
-
/******/
|
|
8986
|
-
/******/
|
|
8987
|
-
/******/ return cachedModule.exports;
|
|
8986
|
+
/******/ if(__webpack_module_cache__[moduleId]) {
|
|
8987
|
+
/******/ return __webpack_module_cache__[moduleId].exports;
|
|
8988
8988
|
/******/ }
|
|
8989
8989
|
/******/ // Create a new module (and put it into the cache)
|
|
8990
8990
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
@@ -8996,7 +8996,7 @@ module.exports = require("util");
|
|
|
8996
8996
|
/******/ // Execute the module function
|
|
8997
8997
|
/******/ var threw = true;
|
|
8998
8998
|
/******/ try {
|
|
8999
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
|
8999
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
9000
9000
|
/******/ threw = false;
|
|
9001
9001
|
/******/ } finally {
|
|
9002
9002
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
|
@@ -9009,15 +9009,10 @@ module.exports = require("util");
|
|
|
9009
9009
|
/************************************************************************/
|
|
9010
9010
|
/******/ /* webpack/runtime/compat */
|
|
9011
9011
|
/******/
|
|
9012
|
-
/******/
|
|
9013
|
-
/******/
|
|
9014
|
-
/************************************************************************/
|
|
9015
|
-
/******/
|
|
9012
|
+
/******/ __webpack_require__.ab = __dirname + "/";/************************************************************************/
|
|
9013
|
+
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
|
9016
9014
|
/******/ // startup
|
|
9017
9015
|
/******/ // Load entry module and return exports
|
|
9018
|
-
/******/
|
|
9019
|
-
/******/ var __webpack_exports__ = __nccwpck_require__(2178);
|
|
9020
|
-
/******/ module.exports = __webpack_exports__;
|
|
9021
|
-
/******/
|
|
9016
|
+
/******/ return __webpack_require__(2178);
|
|
9022
9017
|
/******/ })()
|
|
9023
9018
|
;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/ruby",
|
|
3
3
|
"author": "Nathan Cahill <nathan@nathancahill.com>",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.20",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index",
|
|
7
7
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/ruby",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/fs-extra": "8.0.0",
|
|
25
25
|
"@types/semver": "6.0.0",
|
|
26
|
-
"@vercel/build-utils": "5.0.
|
|
27
|
-
"@vercel/ncc": "0.
|
|
26
|
+
"@vercel/build-utils": "5.0.8",
|
|
27
|
+
"@vercel/ncc": "0.24.0",
|
|
28
28
|
"execa": "2.0.4",
|
|
29
29
|
"fs-extra": "^7.0.1",
|
|
30
30
|
"semver": "6.1.1",
|
|
31
31
|
"typescript": "4.3.4"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "543ffdfe5ccfb59c9c455fc50df3bb8ed1eaf567"
|
|
34
34
|
}
|