vercel 32.2.0 → 32.2.1
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 +374 -88
- package/package.json +15 -15
package/dist/index.js
CHANGED
@@ -875,7 +875,7 @@ module['exports'] = colors;
|
|
875
875
|
|
876
876
|
/***/ }),
|
877
877
|
|
878
|
-
/***/
|
878
|
+
/***/ 44701:
|
879
879
|
/***/ ((module) => {
|
880
880
|
|
881
881
|
"use strict";
|
@@ -1113,13 +1113,15 @@ var ResponseCookies = class {
|
|
1113
1113
|
constructor(responseHeaders) {
|
1114
1114
|
/** @internal */
|
1115
1115
|
this._parsed = /* @__PURE__ */ new Map();
|
1116
|
-
var _a, _b
|
1116
|
+
var _a, _b;
|
1117
1117
|
this._headers = responseHeaders;
|
1118
|
-
const setCookie = (
|
1119
|
-
|
1120
|
-
|
1118
|
+
const setCookie = (_a = responseHeaders.getSetCookie) == null ? void 0 : _a.call(responseHeaders);
|
1119
|
+
(_b = responseHeaders.get("set-cookie")) != null ? _b : [];
|
1120
|
+
const cookieStrings = Array.isArray(setCookie) ? setCookie : (
|
1121
|
+
// TODO: remove splitCookiesString when `getSetCookie` adoption is high enough in Node.js
|
1122
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/Headers/getSetCookie#browser_compatibility
|
1123
|
+
splitCookiesString(setCookie)
|
1121
1124
|
);
|
1122
|
-
const cookieStrings = Array.isArray(setCookie) ? setCookie : splitCookiesString(setCookie);
|
1123
1125
|
for (const cookieString of cookieStrings) {
|
1124
1126
|
const parsed = parseSetCookie(cookieString);
|
1125
1127
|
if (parsed)
|
@@ -1197,7 +1199,7 @@ function normalizeCookie(cookie = { name: "", value: "" }) {
|
|
1197
1199
|
|
1198
1200
|
/***/ }),
|
1199
1201
|
|
1200
|
-
/***/
|
1202
|
+
/***/ 41803:
|
1201
1203
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
1202
1204
|
|
1203
1205
|
"use strict";
|
@@ -1317,7 +1319,7 @@ function computeOrigin({ headers }, defaultOrigin) {
|
|
1317
1319
|
}
|
1318
1320
|
|
1319
1321
|
// src/edge-to-node/headers.ts
|
1320
|
-
var import_cookies = __webpack_require__(
|
1322
|
+
var import_cookies = __webpack_require__(44701);
|
1321
1323
|
function toOutgoingHeaders(headers) {
|
1322
1324
|
var _a, _b;
|
1323
1325
|
const outputHeaders = {};
|
@@ -13098,7 +13100,7 @@ exports.isFail = isFail;
|
|
13098
13100
|
|
13099
13101
|
/***/ }),
|
13100
13102
|
|
13101
|
-
/***/
|
13103
|
+
/***/ 52569:
|
13102
13104
|
/***/ ((__unused_webpack_module, exports) => {
|
13103
13105
|
|
13104
13106
|
"use strict";
|
@@ -13119,7 +13121,7 @@ exports.createDeferred = createDeferred;
|
|
13119
13121
|
|
13120
13122
|
/***/ }),
|
13121
13123
|
|
13122
|
-
/***/
|
13124
|
+
/***/ 99618:
|
13123
13125
|
/***/ ((__unused_webpack_module, exports) => {
|
13124
13126
|
|
13125
13127
|
"use strict";
|
@@ -13133,7 +13135,7 @@ exports.LambdaError = void 0;
|
|
13133
13135
|
class LambdaError extends Error {
|
13134
13136
|
constructor(data = {}) {
|
13135
13137
|
super(data.errorMessage || 'Unspecified runtime initialization error');
|
13136
|
-
Object.setPrototypeOf(this,
|
13138
|
+
Object.setPrototypeOf(this, LambdaError.prototype);
|
13137
13139
|
Object.defineProperty(this, 'name', {
|
13138
13140
|
value: data.errorType || this.constructor.name
|
13139
13141
|
});
|
@@ -13153,7 +13155,7 @@ exports.LambdaError = LambdaError;
|
|
13153
13155
|
|
13154
13156
|
/***/ }),
|
13155
13157
|
|
13156
|
-
/***/
|
13158
|
+
/***/ 84582:
|
13157
13159
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
13158
13160
|
|
13159
13161
|
"use strict";
|
@@ -13193,11 +13195,11 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
13193
13195
|
exports.cleanCacheDir = exports.destroy = exports.invoke = exports.createFunction = exports.ValidationError = exports.initializeRuntime = exports.funCacheDir = exports.providers = exports.runtimes = void 0;
|
13194
13196
|
const debug_1 = __importDefault(__webpack_require__(76529));
|
13195
13197
|
const fs_extra_1 = __webpack_require__(83034);
|
13196
|
-
const unzip_1 = __webpack_require__(
|
13197
|
-
const errors_1 = __webpack_require__(
|
13198
|
-
const providers = __importStar(__webpack_require__(
|
13198
|
+
const unzip_1 = __webpack_require__(8535);
|
13199
|
+
const errors_1 = __webpack_require__(99618);
|
13200
|
+
const providers = __importStar(__webpack_require__(9078));
|
13199
13201
|
exports.providers = providers;
|
13200
|
-
const runtimes_1 = __webpack_require__(
|
13202
|
+
const runtimes_1 = __webpack_require__(19781);
|
13201
13203
|
Object.defineProperty(exports, "funCacheDir", ({ enumerable: true, get: function () { return runtimes_1.funCacheDir; } }));
|
13202
13204
|
Object.defineProperty(exports, "runtimes", ({ enumerable: true, get: function () { return runtimes_1.runtimes; } }));
|
13203
13205
|
Object.defineProperty(exports, "initializeRuntime", ({ enumerable: true, get: function () { return runtimes_1.initializeRuntime; } }));
|
@@ -13227,8 +13229,8 @@ class ValidationError extends Error {
|
|
13227
13229
|
constructor(message) {
|
13228
13230
|
super(message);
|
13229
13231
|
// Restore prototype chain (see https://stackoverflow.com/a/41102306/376773)
|
13230
|
-
this.name =
|
13231
|
-
const actualProto =
|
13232
|
+
this.name = ValidationError.name;
|
13233
|
+
const actualProto = ValidationError.prototype;
|
13232
13234
|
Object.setPrototypeOf(this, actualProto);
|
13233
13235
|
}
|
13234
13236
|
}
|
@@ -13323,7 +13325,7 @@ exports.cleanCacheDir = cleanCacheDir;
|
|
13323
13325
|
|
13324
13326
|
/***/ }),
|
13325
13327
|
|
13326
|
-
/***/
|
13328
|
+
/***/ 974:
|
13327
13329
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
13328
13330
|
|
13329
13331
|
"use strict";
|
@@ -13350,7 +13352,7 @@ const zlib_1 = __webpack_require__(78761);
|
|
13350
13352
|
const path_1 = __webpack_require__(85622);
|
13351
13353
|
const fs_extra_1 = __webpack_require__(83034);
|
13352
13354
|
const semver_1 = __webpack_require__(94893);
|
13353
|
-
const unzip_1 = __webpack_require__(
|
13355
|
+
const unzip_1 = __webpack_require__(8535);
|
13354
13356
|
const debug = (0, debug_1.default)('@vercel/fun:install-node');
|
13355
13357
|
function generateNodeTarballUrl(version, platform = process.platform, arch = process.arch) {
|
13356
13358
|
if (!version.startsWith('v')) {
|
@@ -13405,7 +13407,7 @@ exports.installNode = installNode;
|
|
13405
13407
|
|
13406
13408
|
/***/ }),
|
13407
13409
|
|
13408
|
-
/***/
|
13410
|
+
/***/ 85191:
|
13409
13411
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
13410
13412
|
|
13411
13413
|
"use strict";
|
@@ -13460,7 +13462,7 @@ exports.installPython = installPython;
|
|
13460
13462
|
|
13461
13463
|
/***/ }),
|
13462
13464
|
|
13463
|
-
/***/
|
13465
|
+
/***/ 9078:
|
13464
13466
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
13465
13467
|
|
13466
13468
|
"use strict";
|
@@ -13470,13 +13472,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
13470
13472
|
};
|
13471
13473
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
13472
13474
|
exports.native = void 0;
|
13473
|
-
const native_1 = __importDefault(__webpack_require__(
|
13475
|
+
const native_1 = __importDefault(__webpack_require__(14369));
|
13474
13476
|
exports.native = native_1.default;
|
13475
13477
|
//# sourceMappingURL=index.js.map
|
13476
13478
|
|
13477
13479
|
/***/ }),
|
13478
13480
|
|
13479
|
-
/***/
|
13481
|
+
/***/ 14369:
|
13480
13482
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
13481
13483
|
|
13482
13484
|
"use strict";
|
@@ -13503,7 +13505,7 @@ const tree_kill_1 = __importDefault(__webpack_require__(18384));
|
|
13503
13505
|
const generic_pool_1 = __webpack_require__(97722);
|
13504
13506
|
const path_1 = __webpack_require__(85622);
|
13505
13507
|
const child_process_1 = __webpack_require__(63129);
|
13506
|
-
const runtime_server_1 = __webpack_require__(
|
13508
|
+
const runtime_server_1 = __webpack_require__(36168);
|
13507
13509
|
const isWin = process.platform === 'win32';
|
13508
13510
|
const debug = (0, debug_1.default)('@vercel/fun:providers/native');
|
13509
13511
|
const treeKill = (0, util_1.promisify)(tree_kill_1.default);
|
@@ -13684,7 +13686,7 @@ exports.default = NativeProvider;
|
|
13684
13686
|
|
13685
13687
|
/***/ }),
|
13686
13688
|
|
13687
|
-
/***/
|
13689
|
+
/***/ 36168:
|
13688
13690
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
13689
13691
|
|
13690
13692
|
"use strict";
|
@@ -13710,7 +13712,7 @@ const micro_1 = __webpack_require__(51629);
|
|
13710
13712
|
const uuid_1 = __webpack_require__(54528);
|
13711
13713
|
const path_match_1 = __importDefault(__webpack_require__(73349));
|
13712
13714
|
const once_1 = __importDefault(__webpack_require__(60378));
|
13713
|
-
const deferred_1 = __webpack_require__(
|
13715
|
+
const deferred_1 = __webpack_require__(52569);
|
13714
13716
|
const pathMatch = (0, path_match_1.default)();
|
13715
13717
|
const match = pathMatch('/:version/runtime/:subject/:target/:action?');
|
13716
13718
|
const debug = (0, debug_1.default)('@vercel/fun:runtime-server');
|
@@ -13892,7 +13894,7 @@ exports.RuntimeServer = RuntimeServer;
|
|
13892
13894
|
|
13893
13895
|
/***/ }),
|
13894
13896
|
|
13895
|
-
/***/
|
13897
|
+
/***/ 19781:
|
13896
13898
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
13897
13899
|
|
13898
13900
|
"use strict";
|
@@ -13935,16 +13937,16 @@ const debug_1 = __importDefault(__webpack_require__(76529));
|
|
13935
13937
|
const xdg_app_paths_1 = __importDefault(__webpack_require__(4925));
|
13936
13938
|
const crypto_1 = __webpack_require__(76417);
|
13937
13939
|
const fs_extra_1 = __webpack_require__(83034);
|
13938
|
-
const go1x = __importStar(__webpack_require__(
|
13939
|
-
const nodejs6 = __importStar(__webpack_require__(
|
13940
|
-
const nodejs8 = __importStar(__webpack_require__(
|
13941
|
-
const nodejs10 = __importStar(__webpack_require__(
|
13942
|
-
const nodejs12 = __importStar(__webpack_require__(
|
13943
|
-
const nodejs14 = __importStar(__webpack_require__(
|
13944
|
-
const python27 = __importStar(__webpack_require__(
|
13945
|
-
const python3 = __importStar(__webpack_require__(
|
13946
|
-
const python36 = __importStar(__webpack_require__(
|
13947
|
-
const python37 = __importStar(__webpack_require__(
|
13940
|
+
const go1x = __importStar(__webpack_require__(66732));
|
13941
|
+
const nodejs6 = __importStar(__webpack_require__(88859));
|
13942
|
+
const nodejs8 = __importStar(__webpack_require__(34952));
|
13943
|
+
const nodejs10 = __importStar(__webpack_require__(97295));
|
13944
|
+
const nodejs12 = __importStar(__webpack_require__(92609));
|
13945
|
+
const nodejs14 = __importStar(__webpack_require__(13345));
|
13946
|
+
const python27 = __importStar(__webpack_require__(40134));
|
13947
|
+
const python3 = __importStar(__webpack_require__(93344));
|
13948
|
+
const python36 = __importStar(__webpack_require__(39517));
|
13949
|
+
const python37 = __importStar(__webpack_require__(3104));
|
13948
13950
|
const debug = (0, debug_1.default)('@vercel/fun:runtimes');
|
13949
13951
|
const runtimesDir = (0, path_1.join)(__dirname, 'runtimes');
|
13950
13952
|
exports.runtimes = {};
|
@@ -14128,7 +14130,7 @@ exports.initializeRuntime = initializeRuntime;
|
|
14128
14130
|
|
14129
14131
|
/***/ }),
|
14130
14132
|
|
14131
|
-
/***/
|
14133
|
+
/***/ 5420:
|
14132
14134
|
/***/ ((__unused_webpack_module, exports) => {
|
14133
14135
|
|
14134
14136
|
"use strict";
|
@@ -14144,7 +14146,7 @@ exports.getOutputFile = getOutputFile;
|
|
14144
14146
|
|
14145
14147
|
/***/ }),
|
14146
14148
|
|
14147
|
-
/***/
|
14149
|
+
/***/ 66732:
|
14148
14150
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
14149
14151
|
|
14150
14152
|
"use strict";
|
@@ -14167,7 +14169,7 @@ const path_1 = __webpack_require__(85622);
|
|
14167
14169
|
const execa_1 = __importDefault(__webpack_require__(72553));
|
14168
14170
|
const debug_1 = __importDefault(__webpack_require__(76529));
|
14169
14171
|
const fs_extra_1 = __webpack_require__(83034);
|
14170
|
-
const filename_1 = __webpack_require__(
|
14172
|
+
const filename_1 = __webpack_require__(5420);
|
14171
14173
|
const debug = (0, debug_1.default)('@vercel/fun:runtimes/go1.x');
|
14172
14174
|
function _go(opts) {
|
14173
14175
|
return function go(...args) {
|
@@ -14208,7 +14210,7 @@ exports.init = init;
|
|
14208
14210
|
|
14209
14211
|
/***/ }),
|
14210
14212
|
|
14211
|
-
/***/
|
14213
|
+
/***/ 97295:
|
14212
14214
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
14213
14215
|
|
14214
14216
|
"use strict";
|
@@ -14224,8 +14226,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
14224
14226
|
};
|
14225
14227
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
14226
14228
|
exports.init = void 0;
|
14227
|
-
const install_node_1 = __webpack_require__(
|
14228
|
-
const runtimes_1 = __webpack_require__(
|
14229
|
+
const install_node_1 = __webpack_require__(974);
|
14230
|
+
const runtimes_1 = __webpack_require__(19781);
|
14229
14231
|
function init({ cacheDir }) {
|
14230
14232
|
return __awaiter(this, void 0, void 0, function* () {
|
14231
14233
|
yield Promise.all([
|
@@ -14239,7 +14241,7 @@ exports.init = init;
|
|
14239
14241
|
|
14240
14242
|
/***/ }),
|
14241
14243
|
|
14242
|
-
/***/
|
14244
|
+
/***/ 92609:
|
14243
14245
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
14244
14246
|
|
14245
14247
|
"use strict";
|
@@ -14255,8 +14257,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
14255
14257
|
};
|
14256
14258
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
14257
14259
|
exports.init = void 0;
|
14258
|
-
const install_node_1 = __webpack_require__(
|
14259
|
-
const runtimes_1 = __webpack_require__(
|
14260
|
+
const install_node_1 = __webpack_require__(974);
|
14261
|
+
const runtimes_1 = __webpack_require__(19781);
|
14260
14262
|
function init({ cacheDir }) {
|
14261
14263
|
return __awaiter(this, void 0, void 0, function* () {
|
14262
14264
|
yield Promise.all([
|
@@ -14270,7 +14272,7 @@ exports.init = init;
|
|
14270
14272
|
|
14271
14273
|
/***/ }),
|
14272
14274
|
|
14273
|
-
/***/
|
14275
|
+
/***/ 13345:
|
14274
14276
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
14275
14277
|
|
14276
14278
|
"use strict";
|
@@ -14286,8 +14288,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
14286
14288
|
};
|
14287
14289
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
14288
14290
|
exports.init = void 0;
|
14289
|
-
const install_node_1 = __webpack_require__(
|
14290
|
-
const runtimes_1 = __webpack_require__(
|
14291
|
+
const install_node_1 = __webpack_require__(974);
|
14292
|
+
const runtimes_1 = __webpack_require__(19781);
|
14291
14293
|
function init({ cacheDir }) {
|
14292
14294
|
return __awaiter(this, void 0, void 0, function* () {
|
14293
14295
|
yield Promise.all([
|
@@ -14301,7 +14303,7 @@ exports.init = init;
|
|
14301
14303
|
|
14302
14304
|
/***/ }),
|
14303
14305
|
|
14304
|
-
/***/
|
14306
|
+
/***/ 88859:
|
14305
14307
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
14306
14308
|
|
14307
14309
|
"use strict";
|
@@ -14317,8 +14319,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
14317
14319
|
};
|
14318
14320
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
14319
14321
|
exports.init = void 0;
|
14320
|
-
const install_node_1 = __webpack_require__(
|
14321
|
-
const runtimes_1 = __webpack_require__(
|
14322
|
+
const install_node_1 = __webpack_require__(974);
|
14323
|
+
const runtimes_1 = __webpack_require__(19781);
|
14322
14324
|
function init({ cacheDir }) {
|
14323
14325
|
return __awaiter(this, void 0, void 0, function* () {
|
14324
14326
|
yield Promise.all([
|
@@ -14332,7 +14334,7 @@ exports.init = init;
|
|
14332
14334
|
|
14333
14335
|
/***/ }),
|
14334
14336
|
|
14335
|
-
/***/
|
14337
|
+
/***/ 34952:
|
14336
14338
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
14337
14339
|
|
14338
14340
|
"use strict";
|
@@ -14348,8 +14350,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
14348
14350
|
};
|
14349
14351
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
14350
14352
|
exports.init = void 0;
|
14351
|
-
const install_node_1 = __webpack_require__(
|
14352
|
-
const runtimes_1 = __webpack_require__(
|
14353
|
+
const install_node_1 = __webpack_require__(974);
|
14354
|
+
const runtimes_1 = __webpack_require__(19781);
|
14353
14355
|
function init({ cacheDir }) {
|
14354
14356
|
return __awaiter(this, void 0, void 0, function* () {
|
14355
14357
|
yield Promise.all([
|
@@ -14363,7 +14365,7 @@ exports.init = init;
|
|
14363
14365
|
|
14364
14366
|
/***/ }),
|
14365
14367
|
|
14366
|
-
/***/
|
14368
|
+
/***/ 40134:
|
14367
14369
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
14368
14370
|
|
14369
14371
|
"use strict";
|
@@ -14379,8 +14381,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
14379
14381
|
};
|
14380
14382
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
14381
14383
|
exports.init = void 0;
|
14382
|
-
const install_python_1 = __webpack_require__(
|
14383
|
-
const runtimes_1 = __webpack_require__(
|
14384
|
+
const install_python_1 = __webpack_require__(85191);
|
14385
|
+
const runtimes_1 = __webpack_require__(19781);
|
14384
14386
|
function init({ cacheDir }) {
|
14385
14387
|
return __awaiter(this, void 0, void 0, function* () {
|
14386
14388
|
yield Promise.all([
|
@@ -14394,7 +14396,7 @@ exports.init = init;
|
|
14394
14396
|
|
14395
14397
|
/***/ }),
|
14396
14398
|
|
14397
|
-
/***/
|
14399
|
+
/***/ 39517:
|
14398
14400
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
14399
14401
|
|
14400
14402
|
"use strict";
|
@@ -14410,8 +14412,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
14410
14412
|
};
|
14411
14413
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
14412
14414
|
exports.init = void 0;
|
14413
|
-
const install_python_1 = __webpack_require__(
|
14414
|
-
const runtimes_1 = __webpack_require__(
|
14415
|
+
const install_python_1 = __webpack_require__(85191);
|
14416
|
+
const runtimes_1 = __webpack_require__(19781);
|
14415
14417
|
function init({ cacheDir }) {
|
14416
14418
|
return __awaiter(this, void 0, void 0, function* () {
|
14417
14419
|
yield Promise.all([
|
@@ -14425,7 +14427,7 @@ exports.init = init;
|
|
14425
14427
|
|
14426
14428
|
/***/ }),
|
14427
14429
|
|
14428
|
-
/***/
|
14430
|
+
/***/ 3104:
|
14429
14431
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
14430
14432
|
|
14431
14433
|
"use strict";
|
@@ -14441,8 +14443,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
14441
14443
|
};
|
14442
14444
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
14443
14445
|
exports.init = void 0;
|
14444
|
-
const install_python_1 = __webpack_require__(
|
14445
|
-
const runtimes_1 = __webpack_require__(
|
14446
|
+
const install_python_1 = __webpack_require__(85191);
|
14447
|
+
const runtimes_1 = __webpack_require__(19781);
|
14446
14448
|
function init({ cacheDir }) {
|
14447
14449
|
return __awaiter(this, void 0, void 0, function* () {
|
14448
14450
|
yield Promise.all([
|
@@ -14456,7 +14458,7 @@ exports.init = init;
|
|
14456
14458
|
|
14457
14459
|
/***/ }),
|
14458
14460
|
|
14459
|
-
/***/
|
14461
|
+
/***/ 93344:
|
14460
14462
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
14461
14463
|
|
14462
14464
|
"use strict";
|
@@ -14472,7 +14474,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
14472
14474
|
};
|
14473
14475
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
14474
14476
|
exports.init = void 0;
|
14475
|
-
const runtimes_1 = __webpack_require__(
|
14477
|
+
const runtimes_1 = __webpack_require__(19781);
|
14476
14478
|
function init(_runtime) {
|
14477
14479
|
return __awaiter(this, void 0, void 0, function* () {
|
14478
14480
|
yield (0, runtimes_1.initializeRuntime)(runtimes_1.runtimes.python);
|
@@ -14483,7 +14485,7 @@ exports.init = init;
|
|
14483
14485
|
|
14484
14486
|
/***/ }),
|
14485
14487
|
|
14486
|
-
/***/
|
14488
|
+
/***/ 8535:
|
14487
14489
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
14488
14490
|
|
14489
14491
|
"use strict";
|
@@ -14772,7 +14774,7 @@ function setup(fetch) {
|
|
14772
14774
|
/***/ 31460:
|
14773
14775
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
14774
14776
|
|
14775
|
-
const retry = __webpack_require__(
|
14777
|
+
const retry = __webpack_require__(69420);
|
14776
14778
|
const debug = __webpack_require__(94219)('fetch-retry');
|
14777
14779
|
|
14778
14780
|
// retry settings
|
@@ -34299,22 +34301,23 @@ module.exports = retry;
|
|
34299
34301
|
|
34300
34302
|
/***/ }),
|
34301
34303
|
|
34302
|
-
/***/
|
34304
|
+
/***/ 69420:
|
34303
34305
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
34304
34306
|
|
34305
34307
|
// Packages
|
34306
|
-
var retrier = __webpack_require__(
|
34308
|
+
var retrier = __webpack_require__(47671);
|
34307
34309
|
|
34308
34310
|
function retry(fn, opts) {
|
34309
34311
|
function run(resolve, reject) {
|
34310
34312
|
var options = opts || {};
|
34313
|
+
var op;
|
34311
34314
|
|
34312
34315
|
// Default `randomize` to true
|
34313
34316
|
if (!('randomize' in options)) {
|
34314
34317
|
options.randomize = true;
|
34315
34318
|
}
|
34316
34319
|
|
34317
|
-
|
34320
|
+
op = retrier.operation(options);
|
34318
34321
|
|
34319
34322
|
// We allow the user to abort retrying
|
34320
34323
|
// this makes sense in the cases where
|
@@ -75489,7 +75492,7 @@ module.exports = __webpack_require__(35747).constants || __webpack_require__(276
|
|
75489
75492
|
"use strict";
|
75490
75493
|
|
75491
75494
|
|
75492
|
-
const fs = __webpack_require__(
|
75495
|
+
const fs = __webpack_require__(57156)
|
75493
75496
|
const path = __webpack_require__(85622)
|
75494
75497
|
const mkdirsSync = __webpack_require__(11905).mkdirsSync
|
75495
75498
|
const utimesMillisSync = __webpack_require__(50588).utimesMillisSync
|
@@ -75676,7 +75679,7 @@ module.exports = {
|
|
75676
75679
|
"use strict";
|
75677
75680
|
|
75678
75681
|
|
75679
|
-
const fs = __webpack_require__(
|
75682
|
+
const fs = __webpack_require__(57156)
|
75680
75683
|
const path = __webpack_require__(85622)
|
75681
75684
|
const mkdirs = __webpack_require__(11905).mkdirs
|
75682
75685
|
const pathExists = __webpack_require__(96299).pathExists
|
@@ -75979,7 +75982,7 @@ module.exports = {
|
|
75979
75982
|
|
75980
75983
|
const u = __webpack_require__(39143).fromCallback
|
75981
75984
|
const path = __webpack_require__(85622)
|
75982
|
-
const fs = __webpack_require__(
|
75985
|
+
const fs = __webpack_require__(57156)
|
75983
75986
|
const mkdir = __webpack_require__(11905)
|
75984
75987
|
|
75985
75988
|
function createFile (file, callback) {
|
@@ -76087,7 +76090,7 @@ module.exports = {
|
|
76087
76090
|
|
76088
76091
|
const u = __webpack_require__(39143).fromCallback
|
76089
76092
|
const path = __webpack_require__(85622)
|
76090
|
-
const fs = __webpack_require__(
|
76093
|
+
const fs = __webpack_require__(57156)
|
76091
76094
|
const mkdir = __webpack_require__(11905)
|
76092
76095
|
const pathExists = __webpack_require__(96299).pathExists
|
76093
76096
|
const { areIdentical } = __webpack_require__(69635)
|
@@ -76158,7 +76161,7 @@ module.exports = {
|
|
76158
76161
|
|
76159
76162
|
|
76160
76163
|
const path = __webpack_require__(85622)
|
76161
|
-
const fs = __webpack_require__(
|
76164
|
+
const fs = __webpack_require__(57156)
|
76162
76165
|
const pathExists = __webpack_require__(96299).pathExists
|
76163
76166
|
|
76164
76167
|
/**
|
@@ -76264,7 +76267,7 @@ module.exports = {
|
|
76264
76267
|
"use strict";
|
76265
76268
|
|
76266
76269
|
|
76267
|
-
const fs = __webpack_require__(
|
76270
|
+
const fs = __webpack_require__(57156)
|
76268
76271
|
|
76269
76272
|
function symlinkType (srcpath, type, callback) {
|
76270
76273
|
callback = (typeof type === 'function') ? type : callback
|
@@ -76395,7 +76398,7 @@ module.exports = {
|
|
76395
76398
|
// This is adapted from https://github.com/normalize/mz
|
76396
76399
|
// Copyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors
|
76397
76400
|
const u = __webpack_require__(39143).fromCallback
|
76398
|
-
const fs = __webpack_require__(
|
76401
|
+
const fs = __webpack_require__(57156)
|
76399
76402
|
|
76400
76403
|
const api = [
|
76401
76404
|
'access',
|
@@ -76728,7 +76731,7 @@ module.exports = {
|
|
76728
76731
|
"use strict";
|
76729
76732
|
|
76730
76733
|
|
76731
|
-
const fs = __webpack_require__(
|
76734
|
+
const fs = __webpack_require__(57156)
|
76732
76735
|
const path = __webpack_require__(85622)
|
76733
76736
|
const copySync = __webpack_require__(64599).copySync
|
76734
76737
|
const removeSync = __webpack_require__(48061).removeSync
|
@@ -76804,7 +76807,7 @@ module.exports = {
|
|
76804
76807
|
"use strict";
|
76805
76808
|
|
76806
76809
|
|
76807
|
-
const fs = __webpack_require__(
|
76810
|
+
const fs = __webpack_require__(57156)
|
76808
76811
|
const path = __webpack_require__(85622)
|
76809
76812
|
const copy = __webpack_require__(66073).copy
|
76810
76813
|
const remove = __webpack_require__(48061).remove
|
@@ -76886,7 +76889,7 @@ module.exports = move
|
|
76886
76889
|
|
76887
76890
|
|
76888
76891
|
const u = __webpack_require__(39143).fromCallback
|
76889
|
-
const fs = __webpack_require__(
|
76892
|
+
const fs = __webpack_require__(57156)
|
76890
76893
|
const path = __webpack_require__(85622)
|
76891
76894
|
const mkdir = __webpack_require__(11905)
|
76892
76895
|
const pathExists = __webpack_require__(96299).pathExists
|
@@ -76953,7 +76956,7 @@ module.exports = {
|
|
76953
76956
|
"use strict";
|
76954
76957
|
|
76955
76958
|
|
76956
|
-
const fs = __webpack_require__(
|
76959
|
+
const fs = __webpack_require__(57156)
|
76957
76960
|
const u = __webpack_require__(39143).fromCallback
|
76958
76961
|
const rimraf = __webpack_require__(5752)
|
76959
76962
|
|
@@ -76983,7 +76986,7 @@ module.exports = {
|
|
76983
76986
|
"use strict";
|
76984
76987
|
|
76985
76988
|
|
76986
|
-
const fs = __webpack_require__(
|
76989
|
+
const fs = __webpack_require__(57156)
|
76987
76990
|
const path = __webpack_require__(85622)
|
76988
76991
|
const assert = __webpack_require__(42357)
|
76989
76992
|
|
@@ -77455,7 +77458,7 @@ module.exports = {
|
|
77455
77458
|
"use strict";
|
77456
77459
|
|
77457
77460
|
|
77458
|
-
const fs = __webpack_require__(
|
77461
|
+
const fs = __webpack_require__(57156)
|
77459
77462
|
|
77460
77463
|
function utimesMillis (path, atime, mtime, callback) {
|
77461
77464
|
// if (!HAS_MILLIS_RES) return fs.utimes(path, atime, mtime, callback)
|
@@ -157439,6 +157442,289 @@ RetryOperation.prototype.mainError = function() {
|
|
157439
157442
|
};
|
157440
157443
|
|
157441
157444
|
|
157445
|
+
/***/ }),
|
157446
|
+
|
157447
|
+
/***/ 47671:
|
157448
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
157449
|
+
|
157450
|
+
module.exports = __webpack_require__(98762);
|
157451
|
+
|
157452
|
+
/***/ }),
|
157453
|
+
|
157454
|
+
/***/ 98762:
|
157455
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
157456
|
+
|
157457
|
+
var RetryOperation = __webpack_require__(17526);
|
157458
|
+
|
157459
|
+
exports.operation = function(options) {
|
157460
|
+
var timeouts = exports.timeouts(options);
|
157461
|
+
return new RetryOperation(timeouts, {
|
157462
|
+
forever: options && (options.forever || options.retries === Infinity),
|
157463
|
+
unref: options && options.unref,
|
157464
|
+
maxRetryTime: options && options.maxRetryTime
|
157465
|
+
});
|
157466
|
+
};
|
157467
|
+
|
157468
|
+
exports.timeouts = function(options) {
|
157469
|
+
if (options instanceof Array) {
|
157470
|
+
return [].concat(options);
|
157471
|
+
}
|
157472
|
+
|
157473
|
+
var opts = {
|
157474
|
+
retries: 10,
|
157475
|
+
factor: 2,
|
157476
|
+
minTimeout: 1 * 1000,
|
157477
|
+
maxTimeout: Infinity,
|
157478
|
+
randomize: false
|
157479
|
+
};
|
157480
|
+
for (var key in options) {
|
157481
|
+
opts[key] = options[key];
|
157482
|
+
}
|
157483
|
+
|
157484
|
+
if (opts.minTimeout > opts.maxTimeout) {
|
157485
|
+
throw new Error('minTimeout is greater than maxTimeout');
|
157486
|
+
}
|
157487
|
+
|
157488
|
+
var timeouts = [];
|
157489
|
+
for (var i = 0; i < opts.retries; i++) {
|
157490
|
+
timeouts.push(this.createTimeout(i, opts));
|
157491
|
+
}
|
157492
|
+
|
157493
|
+
if (options && options.forever && !timeouts.length) {
|
157494
|
+
timeouts.push(this.createTimeout(i, opts));
|
157495
|
+
}
|
157496
|
+
|
157497
|
+
// sort the array numerically ascending
|
157498
|
+
timeouts.sort(function(a,b) {
|
157499
|
+
return a - b;
|
157500
|
+
});
|
157501
|
+
|
157502
|
+
return timeouts;
|
157503
|
+
};
|
157504
|
+
|
157505
|
+
exports.createTimeout = function(attempt, opts) {
|
157506
|
+
var random = (opts.randomize)
|
157507
|
+
? (Math.random() + 1)
|
157508
|
+
: 1;
|
157509
|
+
|
157510
|
+
var timeout = Math.round(random * Math.max(opts.minTimeout, 1) * Math.pow(opts.factor, attempt));
|
157511
|
+
timeout = Math.min(timeout, opts.maxTimeout);
|
157512
|
+
|
157513
|
+
return timeout;
|
157514
|
+
};
|
157515
|
+
|
157516
|
+
exports.wrap = function(obj, options, methods) {
|
157517
|
+
if (options instanceof Array) {
|
157518
|
+
methods = options;
|
157519
|
+
options = null;
|
157520
|
+
}
|
157521
|
+
|
157522
|
+
if (!methods) {
|
157523
|
+
methods = [];
|
157524
|
+
for (var key in obj) {
|
157525
|
+
if (typeof obj[key] === 'function') {
|
157526
|
+
methods.push(key);
|
157527
|
+
}
|
157528
|
+
}
|
157529
|
+
}
|
157530
|
+
|
157531
|
+
for (var i = 0; i < methods.length; i++) {
|
157532
|
+
var method = methods[i];
|
157533
|
+
var original = obj[method];
|
157534
|
+
|
157535
|
+
obj[method] = function retryWrapper(original) {
|
157536
|
+
var op = exports.operation(options);
|
157537
|
+
var args = Array.prototype.slice.call(arguments, 1);
|
157538
|
+
var callback = args.pop();
|
157539
|
+
|
157540
|
+
args.push(function(err) {
|
157541
|
+
if (op.retry(err)) {
|
157542
|
+
return;
|
157543
|
+
}
|
157544
|
+
if (err) {
|
157545
|
+
arguments[0] = op.mainError();
|
157546
|
+
}
|
157547
|
+
callback.apply(this, arguments);
|
157548
|
+
});
|
157549
|
+
|
157550
|
+
op.attempt(function() {
|
157551
|
+
original.apply(obj, args);
|
157552
|
+
});
|
157553
|
+
}.bind(obj, original);
|
157554
|
+
obj[method].options = options;
|
157555
|
+
}
|
157556
|
+
};
|
157557
|
+
|
157558
|
+
|
157559
|
+
/***/ }),
|
157560
|
+
|
157561
|
+
/***/ 17526:
|
157562
|
+
/***/ ((module) => {
|
157563
|
+
|
157564
|
+
function RetryOperation(timeouts, options) {
|
157565
|
+
// Compatibility for the old (timeouts, retryForever) signature
|
157566
|
+
if (typeof options === 'boolean') {
|
157567
|
+
options = { forever: options };
|
157568
|
+
}
|
157569
|
+
|
157570
|
+
this._originalTimeouts = JSON.parse(JSON.stringify(timeouts));
|
157571
|
+
this._timeouts = timeouts;
|
157572
|
+
this._options = options || {};
|
157573
|
+
this._maxRetryTime = options && options.maxRetryTime || Infinity;
|
157574
|
+
this._fn = null;
|
157575
|
+
this._errors = [];
|
157576
|
+
this._attempts = 1;
|
157577
|
+
this._operationTimeout = null;
|
157578
|
+
this._operationTimeoutCb = null;
|
157579
|
+
this._timeout = null;
|
157580
|
+
this._operationStart = null;
|
157581
|
+
this._timer = null;
|
157582
|
+
|
157583
|
+
if (this._options.forever) {
|
157584
|
+
this._cachedTimeouts = this._timeouts.slice(0);
|
157585
|
+
}
|
157586
|
+
}
|
157587
|
+
module.exports = RetryOperation;
|
157588
|
+
|
157589
|
+
RetryOperation.prototype.reset = function() {
|
157590
|
+
this._attempts = 1;
|
157591
|
+
this._timeouts = this._originalTimeouts.slice(0);
|
157592
|
+
}
|
157593
|
+
|
157594
|
+
RetryOperation.prototype.stop = function() {
|
157595
|
+
if (this._timeout) {
|
157596
|
+
clearTimeout(this._timeout);
|
157597
|
+
}
|
157598
|
+
if (this._timer) {
|
157599
|
+
clearTimeout(this._timer);
|
157600
|
+
}
|
157601
|
+
|
157602
|
+
this._timeouts = [];
|
157603
|
+
this._cachedTimeouts = null;
|
157604
|
+
};
|
157605
|
+
|
157606
|
+
RetryOperation.prototype.retry = function(err) {
|
157607
|
+
if (this._timeout) {
|
157608
|
+
clearTimeout(this._timeout);
|
157609
|
+
}
|
157610
|
+
|
157611
|
+
if (!err) {
|
157612
|
+
return false;
|
157613
|
+
}
|
157614
|
+
var currentTime = new Date().getTime();
|
157615
|
+
if (err && currentTime - this._operationStart >= this._maxRetryTime) {
|
157616
|
+
this._errors.push(err);
|
157617
|
+
this._errors.unshift(new Error('RetryOperation timeout occurred'));
|
157618
|
+
return false;
|
157619
|
+
}
|
157620
|
+
|
157621
|
+
this._errors.push(err);
|
157622
|
+
|
157623
|
+
var timeout = this._timeouts.shift();
|
157624
|
+
if (timeout === undefined) {
|
157625
|
+
if (this._cachedTimeouts) {
|
157626
|
+
// retry forever, only keep last error
|
157627
|
+
this._errors.splice(0, this._errors.length - 1);
|
157628
|
+
timeout = this._cachedTimeouts.slice(-1);
|
157629
|
+
} else {
|
157630
|
+
return false;
|
157631
|
+
}
|
157632
|
+
}
|
157633
|
+
|
157634
|
+
var self = this;
|
157635
|
+
this._timer = setTimeout(function() {
|
157636
|
+
self._attempts++;
|
157637
|
+
|
157638
|
+
if (self._operationTimeoutCb) {
|
157639
|
+
self._timeout = setTimeout(function() {
|
157640
|
+
self._operationTimeoutCb(self._attempts);
|
157641
|
+
}, self._operationTimeout);
|
157642
|
+
|
157643
|
+
if (self._options.unref) {
|
157644
|
+
self._timeout.unref();
|
157645
|
+
}
|
157646
|
+
}
|
157647
|
+
|
157648
|
+
self._fn(self._attempts);
|
157649
|
+
}, timeout);
|
157650
|
+
|
157651
|
+
if (this._options.unref) {
|
157652
|
+
this._timer.unref();
|
157653
|
+
}
|
157654
|
+
|
157655
|
+
return true;
|
157656
|
+
};
|
157657
|
+
|
157658
|
+
RetryOperation.prototype.attempt = function(fn, timeoutOps) {
|
157659
|
+
this._fn = fn;
|
157660
|
+
|
157661
|
+
if (timeoutOps) {
|
157662
|
+
if (timeoutOps.timeout) {
|
157663
|
+
this._operationTimeout = timeoutOps.timeout;
|
157664
|
+
}
|
157665
|
+
if (timeoutOps.cb) {
|
157666
|
+
this._operationTimeoutCb = timeoutOps.cb;
|
157667
|
+
}
|
157668
|
+
}
|
157669
|
+
|
157670
|
+
var self = this;
|
157671
|
+
if (this._operationTimeoutCb) {
|
157672
|
+
this._timeout = setTimeout(function() {
|
157673
|
+
self._operationTimeoutCb();
|
157674
|
+
}, self._operationTimeout);
|
157675
|
+
}
|
157676
|
+
|
157677
|
+
this._operationStart = new Date().getTime();
|
157678
|
+
|
157679
|
+
this._fn(this._attempts);
|
157680
|
+
};
|
157681
|
+
|
157682
|
+
RetryOperation.prototype.try = function(fn) {
|
157683
|
+
console.log('Using RetryOperation.try() is deprecated');
|
157684
|
+
this.attempt(fn);
|
157685
|
+
};
|
157686
|
+
|
157687
|
+
RetryOperation.prototype.start = function(fn) {
|
157688
|
+
console.log('Using RetryOperation.start() is deprecated');
|
157689
|
+
this.attempt(fn);
|
157690
|
+
};
|
157691
|
+
|
157692
|
+
RetryOperation.prototype.start = RetryOperation.prototype.try;
|
157693
|
+
|
157694
|
+
RetryOperation.prototype.errors = function() {
|
157695
|
+
return this._errors;
|
157696
|
+
};
|
157697
|
+
|
157698
|
+
RetryOperation.prototype.attempts = function() {
|
157699
|
+
return this._attempts;
|
157700
|
+
};
|
157701
|
+
|
157702
|
+
RetryOperation.prototype.mainError = function() {
|
157703
|
+
if (this._errors.length === 0) {
|
157704
|
+
return null;
|
157705
|
+
}
|
157706
|
+
|
157707
|
+
var counts = {};
|
157708
|
+
var mainError = null;
|
157709
|
+
var mainErrorCount = 0;
|
157710
|
+
|
157711
|
+
for (var i = 0; i < this._errors.length; i++) {
|
157712
|
+
var error = this._errors[i];
|
157713
|
+
var message = error.message;
|
157714
|
+
var count = (counts[message] || 0) + 1;
|
157715
|
+
|
157716
|
+
counts[message] = count;
|
157717
|
+
|
157718
|
+
if (count >= mainErrorCount) {
|
157719
|
+
mainError = error;
|
157720
|
+
mainErrorCount = count;
|
157721
|
+
}
|
157722
|
+
}
|
157723
|
+
|
157724
|
+
return mainError;
|
157725
|
+
};
|
157726
|
+
|
157727
|
+
|
157442
157728
|
/***/ }),
|
157443
157729
|
|
157444
157730
|
/***/ 20115:
|
@@ -233683,7 +233969,7 @@ const ms_1 = __importDefault(__webpack_require__(21378));
|
|
233683
233969
|
const bytes_1 = __importDefault(__webpack_require__(81120));
|
233684
233970
|
const path_1 = __webpack_require__(85622);
|
233685
233971
|
const child_process_1 = __webpack_require__(63129);
|
233686
|
-
const fun_1 = __webpack_require__(
|
233972
|
+
const fun_1 = __webpack_require__(84582);
|
233687
233973
|
const build_utils_1 = __webpack_require__(63445);
|
233688
233974
|
const fs_detectors_1 = __webpack_require__(88995);
|
233689
233975
|
const pluralize_1 = __importDefault(__webpack_require__(43669));
|
@@ -239306,7 +239592,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
239306
239592
|
exports.createProxy = void 0;
|
239307
239593
|
const http_1 = __webpack_require__(98605);
|
239308
239594
|
const node_fetch_1 = __webpack_require__(91596);
|
239309
|
-
const node_utils_1 = __webpack_require__(
|
239595
|
+
const node_utils_1 = __webpack_require__(41803);
|
239310
239596
|
const toHeaders = (0, node_utils_1.buildToHeaders)({ Headers: node_fetch_1.Headers });
|
239311
239597
|
function createProxy(client) {
|
239312
239598
|
return (0, http_1.createServer)(async (req, res) => {
|
@@ -246033,7 +246319,7 @@ module.exports = JSON.parse("[[[0,44],\"disallowed_STD3_valid\"],[[45,46],\"vali
|
|
246033
246319
|
/***/ ((module) => {
|
246034
246320
|
|
246035
246321
|
"use strict";
|
246036
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"13.0.
|
246322
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"13.0.3\",\"main\":\"dist/index.js\",\"typings\":\"dist/index.d.ts\",\"homepage\":\"https://vercel.com\",\"license\":\"Apache-2.0\",\"files\":[\"dist\"],\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/vercel/vercel.git\",\"directory\":\"packages/client\"},\"scripts\":{\"build\":\"node ../../utils/build.mjs\",\"test-e2e\":\"pnpm test tests/create-deployment.test.ts tests/create-legacy-deployment.test.ts tests/paths.test.ts\",\"test\":\"jest --reporters=default --reporters=jest-junit --env node --verbose --runInBand --bail\",\"test-unit\":\"pnpm test tests/unit.*test.*\"},\"engines\":{\"node\":\">= 16\"},\"devDependencies\":{\"@types/async-retry\":\"1.4.5\",\"@types/fs-extra\":\"7.0.0\",\"@types/jest\":\"27.4.1\",\"@types/minimatch\":\"3.0.5\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"14.18.33\",\"@types/node-fetch\":\"2.5.4\",\"@types/recursive-readdir\":\"2.2.0\",\"@types/tar-fs\":\"1.16.1\",\"jest-junit\":\"16.0.0\",\"typescript\":\"4.9.5\"},\"dependencies\":{\"@vercel/build-utils\":\"7.2.0\",\"@vercel/routing-utils\":\"3.0.0\",\"@zeit/fetch\":\"5.2.0\",\"async-retry\":\"1.2.3\",\"async-sema\":\"3.0.0\",\"fs-extra\":\"8.0.1\",\"ignore\":\"4.0.6\",\"minimatch\":\"5.0.1\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.7\",\"querystring\":\"^0.2.0\",\"sleep-promise\":\"8.0.1\",\"tar-fs\":\"1.16.3\"}}");
|
246037
246323
|
|
246038
246324
|
/***/ }),
|
246039
246325
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "32.2.
|
3
|
+
"version": "32.2.1",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -22,20 +22,20 @@
|
|
22
22
|
"node": ">= 16"
|
23
23
|
},
|
24
24
|
"dependencies": {
|
25
|
-
"@vercel/build-utils": "7.
|
26
|
-
"@vercel/go": "3.0.
|
27
|
-
"@vercel/hydrogen": "1.0.
|
28
|
-
"@vercel/next": "4.0.
|
29
|
-
"@vercel/node": "3.0.
|
30
|
-
"@vercel/python": "4.0.
|
31
|
-
"@vercel/redwood": "2.0.
|
32
|
-
"@vercel/remix-builder": "2.0.
|
33
|
-
"@vercel/ruby": "2.0.
|
34
|
-
"@vercel/static-build": "2.0.
|
25
|
+
"@vercel/build-utils": "7.2.0",
|
26
|
+
"@vercel/go": "3.0.1",
|
27
|
+
"@vercel/hydrogen": "1.0.1",
|
28
|
+
"@vercel/next": "4.0.3",
|
29
|
+
"@vercel/node": "3.0.5",
|
30
|
+
"@vercel/python": "4.0.1",
|
31
|
+
"@vercel/redwood": "2.0.2",
|
32
|
+
"@vercel/remix-builder": "2.0.4",
|
33
|
+
"@vercel/ruby": "2.0.2",
|
34
|
+
"@vercel/static-build": "2.0.5"
|
35
35
|
},
|
36
36
|
"devDependencies": {
|
37
37
|
"@alex_neo/jest-expect-message": "1.0.5",
|
38
|
-
"@edge-runtime/node-utils": "2.2.
|
38
|
+
"@edge-runtime/node-utils": "2.2.1",
|
39
39
|
"@next/env": "11.1.2",
|
40
40
|
"@sentry/node": "5.5.0",
|
41
41
|
"@sindresorhus/slugify": "0.11.0",
|
@@ -77,12 +77,12 @@
|
|
77
77
|
"@types/yauzl-promise": "2.1.0",
|
78
78
|
"@vercel-internals/constants": "1.0.4",
|
79
79
|
"@vercel-internals/get-package-json": "1.0.0",
|
80
|
-
"@vercel-internals/types": "1.0.
|
81
|
-
"@vercel/client": "13.0.
|
80
|
+
"@vercel-internals/types": "1.0.10",
|
81
|
+
"@vercel/client": "13.0.3",
|
82
82
|
"@vercel/error-utils": "2.0.1",
|
83
83
|
"@vercel/frameworks": "2.0.1",
|
84
84
|
"@vercel/fs-detectors": "5.0.2",
|
85
|
-
"@vercel/fun": "1.0
|
85
|
+
"@vercel/fun": "1.1.0",
|
86
86
|
"@vercel/ncc": "0.24.0",
|
87
87
|
"@vercel/routing-utils": "3.0.0",
|
88
88
|
"@zeit/source-map-support": "0.6.2",
|