vercel 28.9.0 → 28.10.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 +418 -179
- package/package.json +19 -20
package/dist/index.js
CHANGED
@@ -146125,6 +146125,109 @@ module.exports = {
|
|
146125
146125
|
};
|
146126
146126
|
|
146127
146127
|
|
146128
|
+
/***/ }),
|
146129
|
+
|
146130
|
+
/***/ 93948:
|
146131
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
146132
|
+
|
146133
|
+
"use strict";
|
146134
|
+
|
146135
|
+
const supportsColor = __webpack_require__(30395);
|
146136
|
+
const hasFlag = __webpack_require__(76738);
|
146137
|
+
|
146138
|
+
function parseVersion(versionString) {
|
146139
|
+
if (/^\d{3,4}$/.test(versionString)) {
|
146140
|
+
// Env var doesn't always use dots. example: 4601 => 46.1.0
|
146141
|
+
const m = /(\d{1,2})(\d{2})/.exec(versionString);
|
146142
|
+
return {
|
146143
|
+
major: 0,
|
146144
|
+
minor: parseInt(m[1], 10),
|
146145
|
+
patch: parseInt(m[2], 10)
|
146146
|
+
};
|
146147
|
+
}
|
146148
|
+
|
146149
|
+
const versions = (versionString || '').split('.').map(n => parseInt(n, 10));
|
146150
|
+
return {
|
146151
|
+
major: versions[0],
|
146152
|
+
minor: versions[1],
|
146153
|
+
patch: versions[2]
|
146154
|
+
};
|
146155
|
+
}
|
146156
|
+
|
146157
|
+
function supportsHyperlink(stream) {
|
146158
|
+
const {env} = process;
|
146159
|
+
|
146160
|
+
if ('FORCE_HYPERLINK' in env) {
|
146161
|
+
return !(env.FORCE_HYPERLINK.length > 0 && parseInt(env.FORCE_HYPERLINK, 10) === 0);
|
146162
|
+
}
|
146163
|
+
|
146164
|
+
if (hasFlag('no-hyperlink') || hasFlag('no-hyperlinks') || hasFlag('hyperlink=false') || hasFlag('hyperlink=never')) {
|
146165
|
+
return false;
|
146166
|
+
}
|
146167
|
+
|
146168
|
+
if (hasFlag('hyperlink=true') || hasFlag('hyperlink=always')) {
|
146169
|
+
return true;
|
146170
|
+
}
|
146171
|
+
|
146172
|
+
// If they specify no colors, they probably don't want hyperlinks.
|
146173
|
+
if (!supportsColor.supportsColor(stream)) {
|
146174
|
+
return false;
|
146175
|
+
}
|
146176
|
+
|
146177
|
+
if (stream && !stream.isTTY) {
|
146178
|
+
return false;
|
146179
|
+
}
|
146180
|
+
|
146181
|
+
if (process.platform === 'win32') {
|
146182
|
+
return false;
|
146183
|
+
}
|
146184
|
+
|
146185
|
+
if ('NETLIFY' in env) {
|
146186
|
+
return true;
|
146187
|
+
}
|
146188
|
+
|
146189
|
+
if ('CI' in env) {
|
146190
|
+
return false;
|
146191
|
+
}
|
146192
|
+
|
146193
|
+
if ('TEAMCITY_VERSION' in env) {
|
146194
|
+
return false;
|
146195
|
+
}
|
146196
|
+
|
146197
|
+
if ('TERM_PROGRAM' in env) {
|
146198
|
+
const version = parseVersion(env.TERM_PROGRAM_VERSION);
|
146199
|
+
|
146200
|
+
switch (env.TERM_PROGRAM) {
|
146201
|
+
case 'iTerm.app':
|
146202
|
+
if (version.major === 3) {
|
146203
|
+
return version.minor >= 1;
|
146204
|
+
}
|
146205
|
+
|
146206
|
+
return version.major > 3;
|
146207
|
+
// No default
|
146208
|
+
}
|
146209
|
+
}
|
146210
|
+
|
146211
|
+
if ('VTE_VERSION' in env) {
|
146212
|
+
// 0.50.0 was supposed to support hyperlinks, but throws a segfault
|
146213
|
+
if (env.VTE_VERSION === '0.50.0') {
|
146214
|
+
return false;
|
146215
|
+
}
|
146216
|
+
|
146217
|
+
const version = parseVersion(env.VTE_VERSION);
|
146218
|
+
return version.major > 0 || version.minor >= 50;
|
146219
|
+
}
|
146220
|
+
|
146221
|
+
return false;
|
146222
|
+
}
|
146223
|
+
|
146224
|
+
module.exports = {
|
146225
|
+
supportsHyperlink,
|
146226
|
+
stdout: supportsHyperlink(process.stdout),
|
146227
|
+
stderr: supportsHyperlink(process.stderr)
|
146228
|
+
};
|
146229
|
+
|
146230
|
+
|
146128
146231
|
/***/ }),
|
146129
146232
|
|
146130
146233
|
/***/ 29969:
|
@@ -191493,18 +191596,23 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
191493
191596
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
191494
191597
|
};
|
191495
191598
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
191496
|
-
exports.downloadFile = exports.isSymbolicLink = void 0;
|
191599
|
+
exports.downloadFile = exports.isDirectory = exports.isSymbolicLink = void 0;
|
191497
191600
|
const path_1 = __importDefault(__nested_webpack_require_846983__(5622));
|
191498
191601
|
const debug_1 = __importDefault(__nested_webpack_require_846983__(1868));
|
191499
191602
|
const file_fs_ref_1 = __importDefault(__nested_webpack_require_846983__(9331));
|
191500
191603
|
const fs_extra_1 = __nested_webpack_require_846983__(5392);
|
191501
191604
|
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_846983__(2560));
|
191502
|
-
const
|
191503
|
-
const S_IFLNK = 40960; /* 0120000 symbolic link */
|
191605
|
+
const STAT = new fs_extra_1.Stats();
|
191504
191606
|
function isSymbolicLink(mode) {
|
191505
|
-
|
191607
|
+
STAT.mode = mode;
|
191608
|
+
return STAT.isSymbolicLink();
|
191506
191609
|
}
|
191507
191610
|
exports.isSymbolicLink = isSymbolicLink;
|
191611
|
+
function isDirectory(mode) {
|
191612
|
+
STAT.mode = mode;
|
191613
|
+
return STAT.isDirectory();
|
191614
|
+
}
|
191615
|
+
exports.isDirectory = isDirectory;
|
191508
191616
|
async function prepareSymlinkTarget(file, fsPath) {
|
191509
191617
|
const mkdirPromise = fs_extra_1.mkdirp(path_1.default.dirname(fsPath));
|
191510
191618
|
if (file.type === 'FileFsRef') {
|
@@ -191523,6 +191631,10 @@ async function prepareSymlinkTarget(file, fsPath) {
|
|
191523
191631
|
}
|
191524
191632
|
async function downloadFile(file, fsPath) {
|
191525
191633
|
const { mode } = file;
|
191634
|
+
if (isDirectory(mode)) {
|
191635
|
+
await fs_extra_1.mkdirp(fsPath);
|
191636
|
+
return file_fs_ref_1.default.fromFsPath({ mode, fsPath });
|
191637
|
+
}
|
191526
191638
|
// If the source is a symlink, try to create it instead of copying the file.
|
191527
191639
|
// Note: creating symlinks on Windows requires admin priviliges or symlinks
|
191528
191640
|
// enabled in the group policy. We may want to improve the error message.
|
@@ -191589,14 +191701,14 @@ exports.default = download;
|
|
191589
191701
|
/***/ }),
|
191590
191702
|
|
191591
191703
|
/***/ 3838:
|
191592
|
-
/***/ ((__unused_webpack_module, exports,
|
191704
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_851655__) => {
|
191593
191705
|
|
191594
191706
|
"use strict";
|
191595
191707
|
|
191596
191708
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
191597
|
-
const path_1 =
|
191598
|
-
const os_1 =
|
191599
|
-
const fs_extra_1 =
|
191709
|
+
const path_1 = __nested_webpack_require_851655__(5622);
|
191710
|
+
const os_1 = __nested_webpack_require_851655__(2087);
|
191711
|
+
const fs_extra_1 = __nested_webpack_require_851655__(5392);
|
191600
191712
|
async function getWritableDirectory() {
|
191601
191713
|
const name = Math.floor(Math.random() * 0x7fffffff).toString(16);
|
191602
191714
|
const directory = path_1.join(os_1.tmpdir(), name);
|
@@ -191609,7 +191721,7 @@ exports.default = getWritableDirectory;
|
|
191609
191721
|
/***/ }),
|
191610
191722
|
|
191611
191723
|
/***/ 4240:
|
191612
|
-
/***/ (function(__unused_webpack_module, exports,
|
191724
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_852235__) {
|
191613
191725
|
|
191614
191726
|
"use strict";
|
191615
191727
|
|
@@ -191617,22 +191729,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
191617
191729
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
191618
191730
|
};
|
191619
191731
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
191620
|
-
const path_1 = __importDefault(
|
191621
|
-
const assert_1 = __importDefault(
|
191622
|
-
const glob_1 = __importDefault(
|
191623
|
-
const util_1 =
|
191624
|
-
const fs_extra_1 =
|
191625
|
-
const normalize_path_1 =
|
191626
|
-
const file_fs_ref_1 = __importDefault(
|
191732
|
+
const path_1 = __importDefault(__nested_webpack_require_852235__(5622));
|
191733
|
+
const assert_1 = __importDefault(__nested_webpack_require_852235__(2357));
|
191734
|
+
const glob_1 = __importDefault(__nested_webpack_require_852235__(1104));
|
191735
|
+
const util_1 = __nested_webpack_require_852235__(1669);
|
191736
|
+
const fs_extra_1 = __nested_webpack_require_852235__(5392);
|
191737
|
+
const normalize_path_1 = __nested_webpack_require_852235__(6261);
|
191738
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_852235__(9331));
|
191627
191739
|
const vanillaGlob = util_1.promisify(glob_1.default);
|
191628
191740
|
async function glob(pattern, opts, mountpoint) {
|
191629
|
-
|
191630
|
-
if (typeof opts === 'string') {
|
191631
|
-
options = { cwd: opts };
|
191632
|
-
}
|
191633
|
-
else {
|
191634
|
-
options = opts;
|
191635
|
-
}
|
191741
|
+
const options = typeof opts === 'string' ? { cwd: opts } : opts;
|
191636
191742
|
if (!options.cwd) {
|
191637
191743
|
throw new Error('Second argument (basePath) must be specified for names of resulting files');
|
191638
191744
|
}
|
@@ -191641,20 +191747,32 @@ async function glob(pattern, opts, mountpoint) {
|
|
191641
191747
|
}
|
191642
191748
|
const results = {};
|
191643
191749
|
const statCache = {};
|
191644
|
-
|
191645
|
-
|
191646
|
-
|
191647
|
-
|
191648
|
-
|
191750
|
+
const symlinks = {};
|
191751
|
+
const files = await vanillaGlob(pattern, {
|
191752
|
+
...options,
|
191753
|
+
symlinks,
|
191754
|
+
statCache,
|
191755
|
+
stat: true,
|
191756
|
+
dot: true,
|
191757
|
+
});
|
191758
|
+
const dirs = new Set();
|
191759
|
+
const dirsWithEntries = new Set();
|
191649
191760
|
for (const relativePath of files) {
|
191650
191761
|
const fsPath = normalize_path_1.normalizePath(path_1.default.join(options.cwd, relativePath));
|
191651
191762
|
let stat = statCache[fsPath];
|
191652
191763
|
assert_1.default(stat, `statCache does not contain value for ${relativePath} (resolved to ${fsPath})`);
|
191653
|
-
const isSymlink =
|
191654
|
-
if (isSymlink || stat.isFile()) {
|
191764
|
+
const isSymlink = symlinks[fsPath];
|
191765
|
+
if (isSymlink || stat.isFile() || stat.isDirectory()) {
|
191655
191766
|
if (isSymlink) {
|
191656
191767
|
stat = await fs_extra_1.lstat(fsPath);
|
191657
191768
|
}
|
191769
|
+
// Some bookkeeping to track which directories already have entries within
|
191770
|
+
const dirname = path_1.default.dirname(relativePath);
|
191771
|
+
dirsWithEntries.add(dirname);
|
191772
|
+
if (stat.isDirectory()) {
|
191773
|
+
dirs.add(relativePath);
|
191774
|
+
continue;
|
191775
|
+
}
|
191658
191776
|
let finalPath = relativePath;
|
191659
191777
|
if (mountpoint) {
|
191660
191778
|
finalPath = path_1.default.join(mountpoint, finalPath);
|
@@ -191662,6 +191780,18 @@ async function glob(pattern, opts, mountpoint) {
|
|
191662
191780
|
results[finalPath] = new file_fs_ref_1.default({ mode: stat.mode, fsPath });
|
191663
191781
|
}
|
191664
191782
|
}
|
191783
|
+
// Add empty directory entries
|
191784
|
+
for (const relativePath of dirs) {
|
191785
|
+
if (dirsWithEntries.has(relativePath))
|
191786
|
+
continue;
|
191787
|
+
let finalPath = relativePath;
|
191788
|
+
if (mountpoint) {
|
191789
|
+
finalPath = path_1.default.join(mountpoint, finalPath);
|
191790
|
+
}
|
191791
|
+
const fsPath = normalize_path_1.normalizePath(path_1.default.join(options.cwd, relativePath));
|
191792
|
+
const stat = statCache[fsPath];
|
191793
|
+
results[finalPath] = new file_fs_ref_1.default({ mode: stat.mode, fsPath });
|
191794
|
+
}
|
191665
191795
|
return results;
|
191666
191796
|
}
|
191667
191797
|
exports.default = glob;
|
@@ -191670,7 +191800,7 @@ exports.default = glob;
|
|
191670
191800
|
/***/ }),
|
191671
191801
|
|
191672
191802
|
/***/ 7903:
|
191673
|
-
/***/ (function(__unused_webpack_module, exports,
|
191803
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_855315__) {
|
191674
191804
|
|
191675
191805
|
"use strict";
|
191676
191806
|
|
@@ -191679,9 +191809,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
191679
191809
|
};
|
191680
191810
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
191681
191811
|
exports.getSupportedNodeVersion = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = void 0;
|
191682
|
-
const semver_1 =
|
191683
|
-
const errors_1 =
|
191684
|
-
const debug_1 = __importDefault(
|
191812
|
+
const semver_1 = __nested_webpack_require_855315__(2879);
|
191813
|
+
const errors_1 = __nested_webpack_require_855315__(3983);
|
191814
|
+
const debug_1 = __importDefault(__nested_webpack_require_855315__(1868));
|
191685
191815
|
function getOptions() {
|
191686
191816
|
const options = [
|
191687
191817
|
{ major: 18, range: '18.x', runtime: 'nodejs18.x' },
|
@@ -191784,7 +191914,7 @@ exports.normalizePath = normalizePath;
|
|
191784
191914
|
/***/ }),
|
191785
191915
|
|
191786
191916
|
/***/ 7792:
|
191787
|
-
/***/ (function(__unused_webpack_module, exports,
|
191917
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_859367__) {
|
191788
191918
|
|
191789
191919
|
"use strict";
|
191790
191920
|
|
@@ -191793,9 +191923,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
191793
191923
|
};
|
191794
191924
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
191795
191925
|
exports.readConfigFile = void 0;
|
191796
|
-
const js_yaml_1 = __importDefault(
|
191797
|
-
const toml_1 = __importDefault(
|
191798
|
-
const fs_extra_1 =
|
191926
|
+
const js_yaml_1 = __importDefault(__nested_webpack_require_859367__(6540));
|
191927
|
+
const toml_1 = __importDefault(__nested_webpack_require_859367__(9434));
|
191928
|
+
const fs_extra_1 = __nested_webpack_require_859367__(5392);
|
191799
191929
|
async function readFileOrNull(file) {
|
191800
191930
|
try {
|
191801
191931
|
const data = await fs_extra_1.readFile(file);
|
@@ -191850,7 +191980,7 @@ exports.default = rename;
|
|
191850
191980
|
/***/ }),
|
191851
191981
|
|
191852
191982
|
/***/ 1442:
|
191853
|
-
/***/ (function(__unused_webpack_module, exports,
|
191983
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_861160__) {
|
191854
191984
|
|
191855
191985
|
"use strict";
|
191856
191986
|
|
@@ -191859,18 +191989,18 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
191859
191989
|
};
|
191860
191990
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
191861
191991
|
exports.installDependencies = exports.getScriptName = exports.runPipInstall = exports.runBundleInstall = exports.runPackageJsonScript = exports.runCustomInstallCommand = exports.getEnvForPackageManager = exports.runNpmInstall = exports.walkParentDirs = exports.scanParentDirs = exports.getNodeVersion = exports.getSpawnOptions = exports.runShellScript = exports.getNodeBinPath = exports.execCommand = exports.spawnCommand = exports.execAsync = exports.spawnAsync = void 0;
|
191862
|
-
const assert_1 = __importDefault(
|
191863
|
-
const fs_extra_1 = __importDefault(
|
191864
|
-
const path_1 = __importDefault(
|
191865
|
-
const async_sema_1 = __importDefault(
|
191866
|
-
const cross_spawn_1 = __importDefault(
|
191867
|
-
const semver_1 =
|
191868
|
-
const util_1 =
|
191869
|
-
const debug_1 = __importDefault(
|
191870
|
-
const errors_1 =
|
191871
|
-
const node_version_1 =
|
191872
|
-
const read_config_file_1 =
|
191873
|
-
const clone_env_1 =
|
191992
|
+
const assert_1 = __importDefault(__nested_webpack_require_861160__(2357));
|
191993
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_861160__(5392));
|
191994
|
+
const path_1 = __importDefault(__nested_webpack_require_861160__(5622));
|
191995
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_861160__(5758));
|
191996
|
+
const cross_spawn_1 = __importDefault(__nested_webpack_require_861160__(7618));
|
191997
|
+
const semver_1 = __nested_webpack_require_861160__(2879);
|
191998
|
+
const util_1 = __nested_webpack_require_861160__(1669);
|
191999
|
+
const debug_1 = __importDefault(__nested_webpack_require_861160__(1868));
|
192000
|
+
const errors_1 = __nested_webpack_require_861160__(3983);
|
192001
|
+
const node_version_1 = __nested_webpack_require_861160__(7903);
|
192002
|
+
const read_config_file_1 = __nested_webpack_require_861160__(7792);
|
192003
|
+
const clone_env_1 = __nested_webpack_require_861160__(6548);
|
191874
192004
|
// Only allow one `runNpmInstall()` invocation to run concurrently
|
191875
192005
|
const runNpmInstallSema = new async_sema_1.default(1);
|
191876
192006
|
function spawnAsync(command, args, opts = {}) {
|
@@ -192341,7 +192471,7 @@ exports.installDependencies = util_1.deprecate(runNpmInstall, 'installDependenci
|
|
192341
192471
|
/***/ }),
|
192342
192472
|
|
192343
192473
|
/***/ 2560:
|
192344
|
-
/***/ (function(__unused_webpack_module, exports,
|
192474
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_881494__) {
|
192345
192475
|
|
192346
192476
|
"use strict";
|
192347
192477
|
|
@@ -192349,7 +192479,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
192349
192479
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
192350
192480
|
};
|
192351
192481
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
192352
|
-
const end_of_stream_1 = __importDefault(
|
192482
|
+
const end_of_stream_1 = __importDefault(__nested_webpack_require_881494__(687));
|
192353
192483
|
function streamToBuffer(stream) {
|
192354
192484
|
return new Promise((resolve, reject) => {
|
192355
192485
|
const buffers = [];
|
@@ -192378,7 +192508,7 @@ exports.default = streamToBuffer;
|
|
192378
192508
|
/***/ }),
|
192379
192509
|
|
192380
192510
|
/***/ 1148:
|
192381
|
-
/***/ (function(__unused_webpack_module, exports,
|
192511
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_882562__) {
|
192382
192512
|
|
192383
192513
|
"use strict";
|
192384
192514
|
|
@@ -192386,9 +192516,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
192386
192516
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
192387
192517
|
};
|
192388
192518
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
192389
|
-
const path_1 = __importDefault(
|
192390
|
-
const fs_extra_1 = __importDefault(
|
192391
|
-
const ignore_1 = __importDefault(
|
192519
|
+
const path_1 = __importDefault(__nested_webpack_require_882562__(5622));
|
192520
|
+
const fs_extra_1 = __importDefault(__nested_webpack_require_882562__(5392));
|
192521
|
+
const ignore_1 = __importDefault(__nested_webpack_require_882562__(3556));
|
192392
192522
|
function isCodedError(error) {
|
192393
192523
|
return (error !== null &&
|
192394
192524
|
error !== undefined &&
|
@@ -192445,13 +192575,13 @@ exports.default = default_1;
|
|
192445
192575
|
/***/ }),
|
192446
192576
|
|
192447
192577
|
/***/ 4678:
|
192448
|
-
/***/ ((__unused_webpack_module, exports,
|
192578
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_884936__) => {
|
192449
192579
|
|
192450
192580
|
"use strict";
|
192451
192581
|
|
192452
192582
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
192453
192583
|
exports.getPlatformEnv = void 0;
|
192454
|
-
const errors_1 =
|
192584
|
+
const errors_1 = __nested_webpack_require_884936__(3983);
|
192455
192585
|
/**
|
192456
192586
|
* Helper function to support both `VERCEL_` and legacy `NOW_` env vars.
|
192457
192587
|
* Throws an error if *both* env vars are defined.
|
@@ -192515,7 +192645,7 @@ exports.getPrefixedEnvVars = getPrefixedEnvVars;
|
|
192515
192645
|
/***/ }),
|
192516
192646
|
|
192517
192647
|
/***/ 2855:
|
192518
|
-
/***/ (function(__unused_webpack_module, exports,
|
192648
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_887195__) {
|
192519
192649
|
|
192520
192650
|
"use strict";
|
192521
192651
|
|
@@ -192546,31 +192676,31 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
192546
192676
|
};
|
192547
192677
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
192548
192678
|
exports.normalizePath = exports.readConfigFile = exports.EdgeFunction = exports.cloneEnv = exports.getIgnoreFilter = exports.scanParentDirs = exports.getLambdaOptionsFromFunction = exports.isSymbolicLink = exports.debug = exports.streamToBuffer = exports.getPrefixedEnvVars = exports.getPlatformEnv = exports.getSpawnOptions = exports.getDiscontinuedNodeVersions = exports.getLatestNodeVersion = exports.getNodeVersion = exports.getEnvForPackageManager = exports.runCustomInstallCommand = exports.runShellScript = exports.runPipInstall = exports.runBundleInstall = exports.runNpmInstall = exports.getNodeBinPath = exports.walkParentDirs = exports.spawnCommand = exports.execCommand = exports.runPackageJsonScript = exports.installDependencies = exports.getScriptName = exports.spawnAsync = exports.execAsync = exports.rename = exports.glob = exports.getWriteableDirectory = exports.downloadFile = exports.download = exports.Prerender = exports.createLambda = exports.NodejsLambda = exports.Lambda = exports.FileRef = exports.FileFsRef = exports.FileBlob = void 0;
|
192549
|
-
const file_blob_1 = __importDefault(
|
192679
|
+
const file_blob_1 = __importDefault(__nested_webpack_require_887195__(2397));
|
192550
192680
|
exports.FileBlob = file_blob_1.default;
|
192551
|
-
const file_fs_ref_1 = __importDefault(
|
192681
|
+
const file_fs_ref_1 = __importDefault(__nested_webpack_require_887195__(9331));
|
192552
192682
|
exports.FileFsRef = file_fs_ref_1.default;
|
192553
|
-
const file_ref_1 = __importDefault(
|
192683
|
+
const file_ref_1 = __importDefault(__nested_webpack_require_887195__(5187));
|
192554
192684
|
exports.FileRef = file_ref_1.default;
|
192555
|
-
const lambda_1 =
|
192685
|
+
const lambda_1 = __nested_webpack_require_887195__(6721);
|
192556
192686
|
Object.defineProperty(exports, "Lambda", ({ enumerable: true, get: function () { return lambda_1.Lambda; } }));
|
192557
192687
|
Object.defineProperty(exports, "createLambda", ({ enumerable: true, get: function () { return lambda_1.createLambda; } }));
|
192558
192688
|
Object.defineProperty(exports, "getLambdaOptionsFromFunction", ({ enumerable: true, get: function () { return lambda_1.getLambdaOptionsFromFunction; } }));
|
192559
|
-
const nodejs_lambda_1 =
|
192689
|
+
const nodejs_lambda_1 = __nested_webpack_require_887195__(7049);
|
192560
192690
|
Object.defineProperty(exports, "NodejsLambda", ({ enumerable: true, get: function () { return nodejs_lambda_1.NodejsLambda; } }));
|
192561
|
-
const prerender_1 =
|
192691
|
+
const prerender_1 = __nested_webpack_require_887195__(2850);
|
192562
192692
|
Object.defineProperty(exports, "Prerender", ({ enumerable: true, get: function () { return prerender_1.Prerender; } }));
|
192563
|
-
const download_1 = __importStar(
|
192693
|
+
const download_1 = __importStar(__nested_webpack_require_887195__(1611));
|
192564
192694
|
exports.download = download_1.default;
|
192565
192695
|
Object.defineProperty(exports, "downloadFile", ({ enumerable: true, get: function () { return download_1.downloadFile; } }));
|
192566
192696
|
Object.defineProperty(exports, "isSymbolicLink", ({ enumerable: true, get: function () { return download_1.isSymbolicLink; } }));
|
192567
|
-
const get_writable_directory_1 = __importDefault(
|
192697
|
+
const get_writable_directory_1 = __importDefault(__nested_webpack_require_887195__(3838));
|
192568
192698
|
exports.getWriteableDirectory = get_writable_directory_1.default;
|
192569
|
-
const glob_1 = __importDefault(
|
192699
|
+
const glob_1 = __importDefault(__nested_webpack_require_887195__(4240));
|
192570
192700
|
exports.glob = glob_1.default;
|
192571
|
-
const rename_1 = __importDefault(
|
192701
|
+
const rename_1 = __importDefault(__nested_webpack_require_887195__(6718));
|
192572
192702
|
exports.rename = rename_1.default;
|
192573
|
-
const run_user_scripts_1 =
|
192703
|
+
const run_user_scripts_1 = __nested_webpack_require_887195__(1442);
|
192574
192704
|
Object.defineProperty(exports, "execAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.execAsync; } }));
|
192575
192705
|
Object.defineProperty(exports, "spawnAsync", ({ enumerable: true, get: function () { return run_user_scripts_1.spawnAsync; } }));
|
192576
192706
|
Object.defineProperty(exports, "execCommand", ({ enumerable: true, get: function () { return run_user_scripts_1.execCommand; } }));
|
@@ -192589,37 +192719,37 @@ Object.defineProperty(exports, "getNodeVersion", ({ enumerable: true, get: funct
|
|
192589
192719
|
Object.defineProperty(exports, "getSpawnOptions", ({ enumerable: true, get: function () { return run_user_scripts_1.getSpawnOptions; } }));
|
192590
192720
|
Object.defineProperty(exports, "getNodeBinPath", ({ enumerable: true, get: function () { return run_user_scripts_1.getNodeBinPath; } }));
|
192591
192721
|
Object.defineProperty(exports, "scanParentDirs", ({ enumerable: true, get: function () { return run_user_scripts_1.scanParentDirs; } }));
|
192592
|
-
const node_version_1 =
|
192722
|
+
const node_version_1 = __nested_webpack_require_887195__(7903);
|
192593
192723
|
Object.defineProperty(exports, "getLatestNodeVersion", ({ enumerable: true, get: function () { return node_version_1.getLatestNodeVersion; } }));
|
192594
192724
|
Object.defineProperty(exports, "getDiscontinuedNodeVersions", ({ enumerable: true, get: function () { return node_version_1.getDiscontinuedNodeVersions; } }));
|
192595
|
-
const stream_to_buffer_1 = __importDefault(
|
192725
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_887195__(2560));
|
192596
192726
|
exports.streamToBuffer = stream_to_buffer_1.default;
|
192597
|
-
const debug_1 = __importDefault(
|
192727
|
+
const debug_1 = __importDefault(__nested_webpack_require_887195__(1868));
|
192598
192728
|
exports.debug = debug_1.default;
|
192599
|
-
const get_ignore_filter_1 = __importDefault(
|
192729
|
+
const get_ignore_filter_1 = __importDefault(__nested_webpack_require_887195__(1148));
|
192600
192730
|
exports.getIgnoreFilter = get_ignore_filter_1.default;
|
192601
|
-
const get_platform_env_1 =
|
192731
|
+
const get_platform_env_1 = __nested_webpack_require_887195__(4678);
|
192602
192732
|
Object.defineProperty(exports, "getPlatformEnv", ({ enumerable: true, get: function () { return get_platform_env_1.getPlatformEnv; } }));
|
192603
|
-
const get_prefixed_env_vars_1 =
|
192733
|
+
const get_prefixed_env_vars_1 = __nested_webpack_require_887195__(6838);
|
192604
192734
|
Object.defineProperty(exports, "getPrefixedEnvVars", ({ enumerable: true, get: function () { return get_prefixed_env_vars_1.getPrefixedEnvVars; } }));
|
192605
|
-
const clone_env_1 =
|
192735
|
+
const clone_env_1 = __nested_webpack_require_887195__(6548);
|
192606
192736
|
Object.defineProperty(exports, "cloneEnv", ({ enumerable: true, get: function () { return clone_env_1.cloneEnv; } }));
|
192607
|
-
var edge_function_1 =
|
192737
|
+
var edge_function_1 = __nested_webpack_require_887195__(8038);
|
192608
192738
|
Object.defineProperty(exports, "EdgeFunction", ({ enumerable: true, get: function () { return edge_function_1.EdgeFunction; } }));
|
192609
|
-
var read_config_file_1 =
|
192739
|
+
var read_config_file_1 = __nested_webpack_require_887195__(7792);
|
192610
192740
|
Object.defineProperty(exports, "readConfigFile", ({ enumerable: true, get: function () { return read_config_file_1.readConfigFile; } }));
|
192611
|
-
var normalize_path_1 =
|
192741
|
+
var normalize_path_1 = __nested_webpack_require_887195__(6261);
|
192612
192742
|
Object.defineProperty(exports, "normalizePath", ({ enumerable: true, get: function () { return normalize_path_1.normalizePath; } }));
|
192613
|
-
__exportStar(
|
192614
|
-
__exportStar(
|
192615
|
-
__exportStar(
|
192616
|
-
__exportStar(
|
192743
|
+
__exportStar(__nested_webpack_require_887195__(2564), exports);
|
192744
|
+
__exportStar(__nested_webpack_require_887195__(2416), exports);
|
192745
|
+
__exportStar(__nested_webpack_require_887195__(5748), exports);
|
192746
|
+
__exportStar(__nested_webpack_require_887195__(3983), exports);
|
192617
192747
|
|
192618
192748
|
|
192619
192749
|
/***/ }),
|
192620
192750
|
|
192621
192751
|
/***/ 6721:
|
192622
|
-
/***/ (function(__unused_webpack_module, exports,
|
192752
|
+
/***/ (function(__unused_webpack_module, exports, __nested_webpack_require_896013__) {
|
192623
192753
|
|
192624
192754
|
"use strict";
|
192625
192755
|
|
@@ -192628,13 +192758,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
192628
192758
|
};
|
192629
192759
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
192630
192760
|
exports.getLambdaOptionsFromFunction = exports.createZip = exports.createLambda = exports.Lambda = void 0;
|
192631
|
-
const assert_1 = __importDefault(
|
192632
|
-
const async_sema_1 = __importDefault(
|
192633
|
-
const yazl_1 =
|
192634
|
-
const minimatch_1 = __importDefault(
|
192635
|
-
const fs_extra_1 =
|
192636
|
-
const download_1 =
|
192637
|
-
const stream_to_buffer_1 = __importDefault(
|
192761
|
+
const assert_1 = __importDefault(__nested_webpack_require_896013__(2357));
|
192762
|
+
const async_sema_1 = __importDefault(__nested_webpack_require_896013__(5758));
|
192763
|
+
const yazl_1 = __nested_webpack_require_896013__(1223);
|
192764
|
+
const minimatch_1 = __importDefault(__nested_webpack_require_896013__(9566));
|
192765
|
+
const fs_extra_1 = __nested_webpack_require_896013__(5392);
|
192766
|
+
const download_1 = __nested_webpack_require_896013__(1611);
|
192767
|
+
const stream_to_buffer_1 = __importDefault(__nested_webpack_require_896013__(2560));
|
192638
192768
|
class Lambda {
|
192639
192769
|
constructor(opts) {
|
192640
192770
|
const { handler, runtime, maxDuration, memory, environment = {}, allowQuery, regions, supportsMultiPayloads, supportsWrapper, experimentalResponseStreaming, operationType, } = opts;
|
@@ -192762,13 +192892,13 @@ exports.getLambdaOptionsFromFunction = getLambdaOptionsFromFunction;
|
|
192762
192892
|
/***/ }),
|
192763
192893
|
|
192764
192894
|
/***/ 7049:
|
192765
|
-
/***/ ((__unused_webpack_module, exports,
|
192895
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_901862__) => {
|
192766
192896
|
|
192767
192897
|
"use strict";
|
192768
192898
|
|
192769
192899
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
192770
192900
|
exports.NodejsLambda = void 0;
|
192771
|
-
const lambda_1 =
|
192901
|
+
const lambda_1 = __nested_webpack_require_901862__(6721);
|
192772
192902
|
class NodejsLambda extends lambda_1.Lambda {
|
192773
192903
|
constructor({ shouldAddHelpers, shouldAddSourcemapSupport, awsLambdaHandler, ...opts }) {
|
192774
192904
|
super(opts);
|
@@ -192923,13 +193053,13 @@ exports.buildsSchema = {
|
|
192923
193053
|
/***/ }),
|
192924
193054
|
|
192925
193055
|
/***/ 2564:
|
192926
|
-
/***/ ((__unused_webpack_module, exports,
|
193056
|
+
/***/ ((__unused_webpack_module, exports, __nested_webpack_require_907194__) => {
|
192927
193057
|
|
192928
193058
|
"use strict";
|
192929
193059
|
|
192930
193060
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
192931
193061
|
exports.shouldServe = void 0;
|
192932
|
-
const path_1 =
|
193062
|
+
const path_1 = __nested_webpack_require_907194__(5622);
|
192933
193063
|
const shouldServe = ({ entrypoint, files, requestPath, }) => {
|
192934
193064
|
requestPath = requestPath.replace(/\/$/, ''); // sanitize trailing '/'
|
192935
193065
|
entrypoint = entrypoint.replace(/\\/, '/'); // windows compatibility
|
@@ -193174,7 +193304,7 @@ module.exports = __webpack_require__(78761);
|
|
193174
193304
|
/******/ var __webpack_module_cache__ = {};
|
193175
193305
|
/******/
|
193176
193306
|
/******/ // The require function
|
193177
|
-
/******/ function
|
193307
|
+
/******/ function __nested_webpack_require_1284559__(moduleId) {
|
193178
193308
|
/******/ // Check if module is in cache
|
193179
193309
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
193180
193310
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
@@ -193189,7 +193319,7 @@ module.exports = __webpack_require__(78761);
|
|
193189
193319
|
/******/ // Execute the module function
|
193190
193320
|
/******/ var threw = true;
|
193191
193321
|
/******/ try {
|
193192
|
-
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports,
|
193322
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nested_webpack_require_1284559__);
|
193193
193323
|
/******/ threw = false;
|
193194
193324
|
/******/ } finally {
|
193195
193325
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
@@ -193202,11 +193332,11 @@ module.exports = __webpack_require__(78761);
|
|
193202
193332
|
/************************************************************************/
|
193203
193333
|
/******/ /* webpack/runtime/compat */
|
193204
193334
|
/******/
|
193205
|
-
/******/
|
193335
|
+
/******/ __nested_webpack_require_1284559__.ab = __dirname + "/";/************************************************************************/
|
193206
193336
|
/******/ // module exports must be returned from runtime so entry inlining is disabled
|
193207
193337
|
/******/ // startup
|
193208
193338
|
/******/ // Load entry module and return exports
|
193209
|
-
/******/ return
|
193339
|
+
/******/ return __nested_webpack_require_1284559__(2855);
|
193210
193340
|
/******/ })()
|
193211
193341
|
;
|
193212
193342
|
|
@@ -193279,6 +193409,28 @@ function fullDiff (maxWidth, curWidth) {
|
|
193279
193409
|
}
|
193280
193410
|
|
193281
193411
|
|
193412
|
+
/***/ }),
|
193413
|
+
|
193414
|
+
/***/ 48100:
|
193415
|
+
/***/ ((module) => {
|
193416
|
+
|
193417
|
+
"use strict";
|
193418
|
+
|
193419
|
+
|
193420
|
+
module.exports = options => {
|
193421
|
+
options = Object.assign({
|
193422
|
+
onlyFirst: false
|
193423
|
+
}, options);
|
193424
|
+
|
193425
|
+
const pattern = [
|
193426
|
+
'[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
|
193427
|
+
'(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'
|
193428
|
+
].join('|');
|
193429
|
+
|
193430
|
+
return new RegExp(pattern, options.onlyFirst ? undefined : 'g');
|
193431
|
+
};
|
193432
|
+
|
193433
|
+
|
193282
193434
|
/***/ }),
|
193283
193435
|
|
193284
193436
|
/***/ 42581:
|
@@ -193354,7 +193506,7 @@ module.exports = x => {
|
|
193354
193506
|
|
193355
193507
|
"use strict";
|
193356
193508
|
|
193357
|
-
const stripAnsi = __webpack_require__(
|
193509
|
+
const stripAnsi = __webpack_require__(83695);
|
193358
193510
|
const isFullwidthCodePoint = __webpack_require__(13690);
|
193359
193511
|
const emojiRegex = __webpack_require__(42581)();
|
193360
193512
|
|
@@ -193394,6 +193546,21 @@ module.exports = input => {
|
|
193394
193546
|
};
|
193395
193547
|
|
193396
193548
|
|
193549
|
+
/***/ }),
|
193550
|
+
|
193551
|
+
/***/ 83695:
|
193552
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
193553
|
+
|
193554
|
+
"use strict";
|
193555
|
+
|
193556
|
+
const ansiRegex = __webpack_require__(48100);
|
193557
|
+
|
193558
|
+
const stripAnsi = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
|
193559
|
+
|
193560
|
+
module.exports = stripAnsi;
|
193561
|
+
module.exports.default = stripAnsi;
|
193562
|
+
|
193563
|
+
|
193397
193564
|
/***/ }),
|
193398
193565
|
|
193399
193566
|
/***/ 17074:
|
@@ -193401,11 +193568,17 @@ module.exports = input => {
|
|
193401
193568
|
|
193402
193569
|
"use strict";
|
193403
193570
|
|
193404
|
-
const
|
193571
|
+
const ansiEscapes = module.exports;
|
193572
|
+
// TODO: remove this in the next major version
|
193573
|
+
module.exports.default = ansiEscapes;
|
193574
|
+
|
193405
193575
|
const ESC = '\u001B[';
|
193576
|
+
const OSC = '\u001B]';
|
193577
|
+
const BEL = '\u0007';
|
193578
|
+
const SEP = ';';
|
193406
193579
|
const isTerminalApp = process.env.TERM_PROGRAM === 'Apple_Terminal';
|
193407
193580
|
|
193408
|
-
|
193581
|
+
ansiEscapes.cursorTo = (x, y) => {
|
193409
193582
|
if (typeof x !== 'number') {
|
193410
193583
|
throw new TypeError('The `x` argument is required');
|
193411
193584
|
}
|
@@ -193417,7 +193590,7 @@ x.cursorTo = (x, y) => {
|
|
193417
193590
|
return ESC + (y + 1) + ';' + (x + 1) + 'H';
|
193418
193591
|
};
|
193419
193592
|
|
193420
|
-
|
193593
|
+
ansiEscapes.cursorMove = (x, y) => {
|
193421
193594
|
if (typeof x !== 'number') {
|
193422
193595
|
throw new TypeError('The `x` argument is required');
|
193423
193596
|
}
|
@@ -193439,69 +193612,118 @@ x.cursorMove = (x, y) => {
|
|
193439
193612
|
return ret;
|
193440
193613
|
};
|
193441
193614
|
|
193442
|
-
|
193443
|
-
|
193444
|
-
|
193445
|
-
|
193615
|
+
ansiEscapes.cursorUp = (count = 1) => ESC + count + 'A';
|
193616
|
+
ansiEscapes.cursorDown = (count = 1) => ESC + count + 'B';
|
193617
|
+
ansiEscapes.cursorForward = (count = 1) => ESC + count + 'C';
|
193618
|
+
ansiEscapes.cursorBackward = (count = 1) => ESC + count + 'D';
|
193446
193619
|
|
193447
|
-
|
193448
|
-
|
193449
|
-
|
193450
|
-
|
193451
|
-
|
193452
|
-
|
193453
|
-
|
193454
|
-
|
193620
|
+
ansiEscapes.cursorLeft = ESC + 'G';
|
193621
|
+
ansiEscapes.cursorSavePosition = isTerminalApp ? '\u001B7' : ESC + 's';
|
193622
|
+
ansiEscapes.cursorRestorePosition = isTerminalApp ? '\u001B8' : ESC + 'u';
|
193623
|
+
ansiEscapes.cursorGetPosition = ESC + '6n';
|
193624
|
+
ansiEscapes.cursorNextLine = ESC + 'E';
|
193625
|
+
ansiEscapes.cursorPrevLine = ESC + 'F';
|
193626
|
+
ansiEscapes.cursorHide = ESC + '?25l';
|
193627
|
+
ansiEscapes.cursorShow = ESC + '?25h';
|
193455
193628
|
|
193456
|
-
|
193629
|
+
ansiEscapes.eraseLines = count => {
|
193457
193630
|
let clear = '';
|
193458
193631
|
|
193459
193632
|
for (let i = 0; i < count; i++) {
|
193460
|
-
clear +=
|
193633
|
+
clear += ansiEscapes.eraseLine + (i < count - 1 ? ansiEscapes.cursorUp() : '');
|
193461
193634
|
}
|
193462
193635
|
|
193463
193636
|
if (count) {
|
193464
|
-
clear +=
|
193637
|
+
clear += ansiEscapes.cursorLeft;
|
193465
193638
|
}
|
193466
193639
|
|
193467
193640
|
return clear;
|
193468
193641
|
};
|
193469
193642
|
|
193470
|
-
|
193471
|
-
|
193472
|
-
|
193473
|
-
|
193474
|
-
|
193475
|
-
|
193476
|
-
|
193477
|
-
|
193643
|
+
ansiEscapes.eraseEndLine = ESC + 'K';
|
193644
|
+
ansiEscapes.eraseStartLine = ESC + '1K';
|
193645
|
+
ansiEscapes.eraseLine = ESC + '2K';
|
193646
|
+
ansiEscapes.eraseDown = ESC + 'J';
|
193647
|
+
ansiEscapes.eraseUp = ESC + '1J';
|
193648
|
+
ansiEscapes.eraseScreen = ESC + '2J';
|
193649
|
+
ansiEscapes.scrollUp = ESC + 'S';
|
193650
|
+
ansiEscapes.scrollDown = ESC + 'T';
|
193478
193651
|
|
193479
|
-
|
193480
|
-
x.beep = '\u0007';
|
193652
|
+
ansiEscapes.clearScreen = '\u001Bc';
|
193481
193653
|
|
193482
|
-
|
193483
|
-
|
193654
|
+
ansiEscapes.clearTerminal = process.platform === 'win32' ?
|
193655
|
+
`${ansiEscapes.eraseScreen}${ESC}0f` :
|
193656
|
+
// 1. Erases the screen (Only done in case `2` is not supported)
|
193657
|
+
// 2. Erases the whole screen including scrollback buffer
|
193658
|
+
// 3. Moves cursor to the top-left position
|
193659
|
+
// More info: https://www.real-world-systems.com/docs/ANSIcode.html
|
193660
|
+
`${ansiEscapes.eraseScreen}${ESC}3J${ESC}H`;
|
193484
193661
|
|
193485
|
-
|
193662
|
+
ansiEscapes.beep = BEL;
|
193486
193663
|
|
193487
|
-
|
193488
|
-
|
193664
|
+
ansiEscapes.link = (text, url) => {
|
193665
|
+
return [
|
193666
|
+
OSC,
|
193667
|
+
'8',
|
193668
|
+
SEP,
|
193669
|
+
SEP,
|
193670
|
+
url,
|
193671
|
+
BEL,
|
193672
|
+
text,
|
193673
|
+
OSC,
|
193674
|
+
'8',
|
193675
|
+
SEP,
|
193676
|
+
SEP,
|
193677
|
+
BEL
|
193678
|
+
].join('');
|
193679
|
+
};
|
193680
|
+
|
193681
|
+
ansiEscapes.image = (buffer, options = {}) => {
|
193682
|
+
let ret = `${OSC}1337;File=inline=1`;
|
193683
|
+
|
193684
|
+
if (options.width) {
|
193685
|
+
ret += `;width=${options.width}`;
|
193489
193686
|
}
|
193490
193687
|
|
193491
|
-
if (
|
193492
|
-
ret += `;height=${
|
193688
|
+
if (options.height) {
|
193689
|
+
ret += `;height=${options.height}`;
|
193493
193690
|
}
|
193494
193691
|
|
193495
|
-
if (
|
193692
|
+
if (options.preserveAspectRatio === false) {
|
193496
193693
|
ret += ';preserveAspectRatio=0';
|
193497
193694
|
}
|
193498
193695
|
|
193499
|
-
return ret + ':' +
|
193696
|
+
return ret + ':' + buffer.toString('base64') + BEL;
|
193500
193697
|
};
|
193501
193698
|
|
193502
|
-
|
193699
|
+
ansiEscapes.iTerm = {
|
193700
|
+
setCwd: (cwd = process.cwd()) => `${OSC}50;CurrentDir=${cwd}${BEL}`,
|
193701
|
+
|
193702
|
+
annotation: (message, options = {}) => {
|
193703
|
+
let ret = `${OSC}1337;`;
|
193704
|
+
|
193705
|
+
const hasX = typeof options.x !== 'undefined';
|
193706
|
+
const hasY = typeof options.y !== 'undefined';
|
193707
|
+
if ((hasX || hasY) && !(hasX && hasY && typeof options.length !== 'undefined')) {
|
193708
|
+
throw new Error('`x`, `y` and `length` must be defined when `x` or `y` is defined');
|
193709
|
+
}
|
193710
|
+
|
193711
|
+
message = message.replace(/\|/g, '');
|
193712
|
+
|
193713
|
+
ret += options.isHidden ? 'AddHiddenAnnotation=' : 'AddAnnotation=';
|
193714
|
+
|
193715
|
+
if (options.length > 0) {
|
193716
|
+
ret +=
|
193717
|
+
(hasX ?
|
193718
|
+
[message, options.length, options.x, options.y] :
|
193719
|
+
[options.length, message]).join('|');
|
193720
|
+
} else {
|
193721
|
+
ret += message;
|
193722
|
+
}
|
193503
193723
|
|
193504
|
-
|
193724
|
+
return ret + BEL;
|
193725
|
+
}
|
193726
|
+
};
|
193505
193727
|
|
193506
193728
|
|
193507
193729
|
/***/ }),
|
@@ -193512,13 +193734,13 @@ x.iTerm.setCwd = cwd => '\u001B]50;CurrentDir=' + (cwd || process.cwd()) + '\u00
|
|
193512
193734
|
"use strict";
|
193513
193735
|
|
193514
193736
|
|
193515
|
-
module.exports = () => {
|
193737
|
+
module.exports = ({onlyFirst = false} = {}) => {
|
193516
193738
|
const pattern = [
|
193517
|
-
'[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]
|
193518
|
-
'(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-
|
193739
|
+
'[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
|
193740
|
+
'(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'
|
193519
193741
|
].join('|');
|
193520
193742
|
|
193521
|
-
return new RegExp(pattern, 'g');
|
193743
|
+
return new RegExp(pattern, onlyFirst ? undefined : 'g');
|
193522
193744
|
};
|
193523
193745
|
|
193524
193746
|
|
@@ -206360,34 +206582,9 @@ module.exports = string => typeof string === 'string' ? string.replace(ansiRegex
|
|
206360
206582
|
|
206361
206583
|
"use strict";
|
206362
206584
|
|
206363
|
-
const ansiRegex = __webpack_require__(
|
206364
|
-
|
206365
|
-
const stripAnsi = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
|
206366
|
-
|
206367
|
-
module.exports = stripAnsi;
|
206368
|
-
module.exports.default = stripAnsi;
|
206369
|
-
|
206370
|
-
|
206371
|
-
/***/ }),
|
206585
|
+
const ansiRegex = __webpack_require__(30678);
|
206372
206586
|
|
206373
|
-
|
206374
|
-
/***/ ((module) => {
|
206375
|
-
|
206376
|
-
"use strict";
|
206377
|
-
|
206378
|
-
|
206379
|
-
module.exports = options => {
|
206380
|
-
options = Object.assign({
|
206381
|
-
onlyFirst: false
|
206382
|
-
}, options);
|
206383
|
-
|
206384
|
-
const pattern = [
|
206385
|
-
'[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)',
|
206386
|
-
'(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'
|
206387
|
-
].join('|');
|
206388
|
-
|
206389
|
-
return new RegExp(pattern, options.onlyFirst ? undefined : 'g');
|
206390
|
-
};
|
206587
|
+
module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string;
|
206391
206588
|
|
206392
206589
|
|
206393
206590
|
/***/ }),
|
@@ -215919,7 +216116,7 @@ exports.frameworks = [
|
|
215919
216116
|
value: 'docs/.vitepress/dist',
|
215920
216117
|
},
|
215921
216118
|
},
|
215922
|
-
getOutputDirName: async () => '
|
216119
|
+
getOutputDirName: async () => 'docs/.vitepress/dist',
|
215923
216120
|
},
|
215924
216121
|
{
|
215925
216122
|
name: 'VuePress',
|
@@ -241570,6 +241767,9 @@ async function performCreateAlias(client, contextName, deployment, alias) {
|
|
241570
241767
|
if (err.code === 'invalid_alias') {
|
241571
241768
|
return new ERRORS.InvalidAlias(alias);
|
241572
241769
|
}
|
241770
|
+
if (err.code === 'deployment_not_ready') {
|
241771
|
+
return new ERRORS.DeploymentNotReady({ url: deployment.url });
|
241772
|
+
}
|
241573
241773
|
if (err.status === 403) {
|
241574
241774
|
if (err.code === 'alias_in_use') {
|
241575
241775
|
return new ERRORS.AliasInUse(alias);
|
@@ -241578,9 +241778,6 @@ async function performCreateAlias(client, contextName, deployment, alias) {
|
|
241578
241778
|
return new ERRORS.DomainPermissionDenied(alias, contextName);
|
241579
241779
|
}
|
241580
241780
|
}
|
241581
|
-
if (err.status === 400) {
|
241582
|
-
return new ERRORS.DeploymentNotReady({ url: deployment.url });
|
241583
|
-
}
|
241584
241781
|
}
|
241585
241782
|
throw err;
|
241586
241783
|
}
|
@@ -253789,18 +253986,43 @@ exports.default = code;
|
|
253789
253986
|
|
253790
253987
|
"use strict";
|
253791
253988
|
|
253989
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
253990
|
+
if (k2 === undefined) k2 = k;
|
253991
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
253992
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
253993
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
253994
|
+
}
|
253995
|
+
Object.defineProperty(o, k2, desc);
|
253996
|
+
}) : (function(o, m, k, k2) {
|
253997
|
+
if (k2 === undefined) k2 = k;
|
253998
|
+
o[k2] = m[k];
|
253999
|
+
}));
|
254000
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
254001
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
254002
|
+
}) : function(o, v) {
|
254003
|
+
o["default"] = v;
|
254004
|
+
});
|
254005
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
254006
|
+
if (mod && mod.__esModule) return mod;
|
254007
|
+
var result = {};
|
254008
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
254009
|
+
__setModuleDefault(result, mod);
|
254010
|
+
return result;
|
254011
|
+
};
|
253792
254012
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
253793
254013
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
253794
254014
|
};
|
253795
254015
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
253796
254016
|
exports.Output = void 0;
|
253797
254017
|
const chalk_1 = __importDefault(__webpack_require__(961));
|
254018
|
+
const ansiEscapes = __importStar(__webpack_require__(17074));
|
254019
|
+
const supports_hyperlinks_1 = __webpack_require__(93948);
|
253798
254020
|
const link_1 = __importDefault(__webpack_require__(98472));
|
253799
254021
|
const wait_1 = __importDefault(__webpack_require__(22015));
|
253800
254022
|
const error_utils_1 = __webpack_require__(35772);
|
253801
254023
|
const IS_TEST = process.env.NODE_ENV === 'test';
|
253802
254024
|
class Output {
|
253803
|
-
constructor(stream, { debug: debugEnabled = false } = {}) {
|
254025
|
+
constructor(stream, { debug: debugEnabled = false, supportsHyperlink = (0, supports_hyperlinks_1.supportsHyperlink)(stream), } = {}) {
|
253804
254026
|
this.isDebugEnabled = () => {
|
253805
254027
|
return this.debugEnabled;
|
253806
254028
|
};
|
@@ -253893,8 +254115,25 @@ class Output {
|
|
253893
254115
|
}
|
253894
254116
|
return promise;
|
253895
254117
|
};
|
254118
|
+
/**
|
254119
|
+
* Returns an ANSI formatted hyperlink when support has been enabled.
|
254120
|
+
*/
|
254121
|
+
this.link = (text, url, { fallback } = {}) => {
|
254122
|
+
// Based on https://github.com/sindresorhus/terminal-link (MIT license)
|
254123
|
+
if (!this.supportsHyperlink) {
|
254124
|
+
// If the fallback has been explicitly disabled, don't modify the text itself
|
254125
|
+
if (fallback === false) {
|
254126
|
+
return (0, link_1.default)(text);
|
254127
|
+
}
|
254128
|
+
return typeof fallback === 'function'
|
254129
|
+
? fallback()
|
254130
|
+
: `${text} (${(0, link_1.default)(url)})`;
|
254131
|
+
}
|
254132
|
+
return ansiEscapes.link(chalk_1.default.cyan(text), url);
|
254133
|
+
};
|
253896
254134
|
this.stream = stream;
|
253897
254135
|
this.debugEnabled = debugEnabled;
|
254136
|
+
this.supportsHyperlink = supportsHyperlink;
|
253898
254137
|
this.spinnerMessage = '';
|
253899
254138
|
this._spinner = null;
|
253900
254139
|
}
|
@@ -256379,7 +256618,7 @@ module.exports = JSON.parse("{\"application/1d-interleaved-parityfec\":{\"source
|
|
256379
256618
|
/***/ ((module) => {
|
256380
256619
|
|
256381
256620
|
"use strict";
|
256382
|
-
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.
|
256621
|
+
module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.10.1\",\"preferGlobal\":true,\"license\":\"Apache-2.0\",\"description\":\"The command-line interface for Vercel\",\"homepage\":\"https://vercel.com\",\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/vercel/vercel.git\",\"directory\":\"packages/cli\"},\"scripts\":{\"preinstall\":\"node ./scripts/preinstall.js\",\"test\":\"jest --env node --verbose --bail\",\"test-unit\":\"yarn test test/unit/\",\"test-integration-cli\":\"rimraf test/fixtures/integration && ava test/integration.js --serial --fail-fast --verbose\",\"test-integration-dev\":\"yarn test test/dev/\",\"coverage\":\"codecov\",\"build\":\"ts-node ./scripts/build.ts\",\"dev\":\"ts-node ./src/index.ts\"},\"bin\":{\"vc\":\"./dist/index.js\",\"vercel\":\"./dist/index.js\"},\"files\":[\"dist\",\"scripts/preinstall.js\"],\"ava\":{\"extensions\":[\"ts\"],\"require\":[\"ts-node/register/transpile-only\",\"esm\"]},\"engines\":{\"node\":\">= 14\"},\"dependencies\":{\"@vercel/build-utils\":\"5.7.2\",\"@vercel/go\":\"2.2.21\",\"@vercel/hydrogen\":\"0.0.35\",\"@vercel/next\":\"3.3.5\",\"@vercel/node\":\"2.8.2\",\"@vercel/python\":\"3.1.31\",\"@vercel/redwood\":\"1.0.41\",\"@vercel/remix\":\"1.1.3\",\"@vercel/ruby\":\"1.3.47\",\"@vercel/static-build\":\"1.0.44\",\"update-notifier\":\"5.1.0\"},\"devDependencies\":{\"@alex_neo/jest-expect-message\":\"1.0.5\",\"@next/env\":\"11.1.2\",\"@sentry/node\":\"5.5.0\",\"@sindresorhus/slugify\":\"0.11.0\",\"@swc/core\":\"1.2.218\",\"@tootallnate/once\":\"1.1.2\",\"@types/async-retry\":\"1.2.1\",\"@types/bytes\":\"3.0.0\",\"@types/chance\":\"1.1.3\",\"@types/debug\":\"0.0.31\",\"@types/dotenv\":\"6.1.1\",\"@types/escape-html\":\"0.0.20\",\"@types/express\":\"4.17.13\",\"@types/fs-extra\":\"9.0.13\",\"@types/glob\":\"7.1.1\",\"@types/http-proxy\":\"1.16.2\",\"@types/ini\":\"1.3.31\",\"@types/inquirer\":\"7.3.1\",\"@types/jest\":\"27.4.1\",\"@types/jest-expect-message\":\"1.0.3\",\"@types/load-json-file\":\"2.0.7\",\"@types/mime-types\":\"2.1.0\",\"@types/minimatch\":\"3.0.3\",\"@types/mri\":\"1.1.0\",\"@types/ms\":\"0.7.30\",\"@types/node\":\"14.18.33\",\"@types/node-fetch\":\"2.5.10\",\"@types/npm-package-arg\":\"6.1.0\",\"@types/pluralize\":\"0.0.29\",\"@types/psl\":\"1.1.0\",\"@types/semver\":\"6.0.1\",\"@types/tar-fs\":\"1.16.1\",\"@types/text-table\":\"0.2.0\",\"@types/title\":\"3.4.1\",\"@types/universal-analytics\":\"0.4.2\",\"@types/update-notifier\":\"5.1.0\",\"@types/which\":\"1.3.2\",\"@types/write-json-file\":\"2.2.1\",\"@types/yauzl-promise\":\"2.1.0\",\"@vercel/client\":\"12.2.23\",\"@vercel/error-utils\":\"1.0.3\",\"@vercel/frameworks\":\"1.1.16\",\"@vercel/fs-detectors\":\"3.5.6\",\"@vercel/fun\":\"1.0.4\",\"@vercel/ncc\":\"0.24.0\",\"@zeit/source-map-support\":\"0.6.2\",\"ajv\":\"6.12.2\",\"alpha-sort\":\"2.0.1\",\"ansi-escapes\":\"4.3.2\",\"ansi-regex\":\"5.0.1\",\"arg\":\"5.0.0\",\"async-listen\":\"1.2.0\",\"async-retry\":\"1.1.3\",\"async-sema\":\"2.1.4\",\"ava\":\"2.2.0\",\"boxen\":\"4.2.0\",\"bytes\":\"3.0.0\",\"chalk\":\"4.1.0\",\"chance\":\"1.1.7\",\"chokidar\":\"3.3.1\",\"codecov\":\"3.8.2\",\"cpy\":\"7.2.0\",\"date-fns\":\"1.29.0\",\"debug\":\"3.1.0\",\"dot\":\"1.1.3\",\"dotenv\":\"4.0.0\",\"email-validator\":\"1.1.1\",\"epipebomb\":\"1.0.0\",\"escape-html\":\"1.0.3\",\"esm\":\"3.1.4\",\"execa\":\"3.2.0\",\"express\":\"4.17.1\",\"fast-deep-equal\":\"3.1.3\",\"fs-extra\":\"10.0.0\",\"get-port\":\"5.1.1\",\"git-last-commit\":\"1.0.1\",\"glob\":\"7.1.2\",\"http-proxy\":\"1.18.1\",\"ini\":\"3.0.0\",\"inquirer\":\"7.0.4\",\"is-docker\":\"2.2.1\",\"is-port-reachable\":\"3.1.0\",\"is-url\":\"1.2.2\",\"jaro-winkler\":\"0.2.8\",\"json5\":\"2.2.1\",\"jsonlines\":\"0.1.1\",\"line-async-iterator\":\"3.0.0\",\"load-json-file\":\"3.0.0\",\"mime-types\":\"2.1.24\",\"minimatch\":\"3.0.4\",\"mri\":\"1.1.5\",\"ms\":\"2.1.2\",\"node-fetch\":\"2.6.7\",\"npm-package-arg\":\"6.1.0\",\"open\":\"8.4.0\",\"ora\":\"3.4.0\",\"pcre-to-regexp\":\"1.0.0\",\"pluralize\":\"7.0.0\",\"promisepipe\":\"3.0.0\",\"psl\":\"1.1.31\",\"qr-image\":\"3.2.0\",\"raw-body\":\"2.4.1\",\"rimraf\":\"3.0.2\",\"semver\":\"5.5.0\",\"serve-handler\":\"6.1.1\",\"strip-ansi\":\"6.0.1\",\"stripe\":\"5.1.0\",\"supports-hyperlinks\":\"2.2.0\",\"tar-fs\":\"1.16.3\",\"test-listen\":\"1.1.0\",\"text-table\":\"0.2.0\",\"title\":\"3.4.1\",\"tmp-promise\":\"1.0.3\",\"tree-kill\":\"1.2.2\",\"ts-node\":\"10.9.1\",\"typescript\":\"4.7.4\",\"universal-analytics\":\"0.4.20\",\"utility-types\":\"2.1.0\",\"write-json-file\":\"2.2.0\",\"xdg-app-paths\":\"5.1.0\",\"yauzl-promise\":\"2.1.3\"},\"jest\":{\"preset\":\"ts-jest\",\"globals\":{\"ts-jest\":{\"diagnostics\":false,\"isolatedModules\":true}},\"setupFilesAfterEnv\":[\"@alex_neo/jest-expect-message\"],\"verbose\":false,\"testEnvironment\":\"node\",\"testMatch\":[\"<rootDir>/test/**/*.test.ts\"]}}");
|
256383
256622
|
|
256384
256623
|
/***/ }),
|
256385
256624
|
|
@@ -256387,7 +256626,7 @@ module.exports = JSON.parse("{\"name\":\"vercel\",\"version\":\"28.9.0\",\"prefe
|
|
256387
256626
|
/***/ ((module) => {
|
256388
256627
|
|
256389
256628
|
"use strict";
|
256390
|
-
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.2.
|
256629
|
+
module.exports = JSON.parse("{\"name\":\"@vercel/client\",\"version\":\"12.2.23\",\"main\":\"dist/index.js\",\"typings\":\"dist/index.d.ts\",\"homepage\":\"https://vercel.com\",\"license\":\"MIT\",\"files\":[\"dist\"],\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/vercel/vercel.git\",\"directory\":\"packages/client\"},\"scripts\":{\"build\":\"tsc\",\"test-integration-once\":\"yarn test tests/create-deployment.test.ts tests/create-legacy-deployment.test.ts tests/paths.test.ts\",\"test\":\"jest --env node --verbose --runInBand --bail\",\"test-unit\":\"yarn test tests/unit.*test.*\"},\"engines\":{\"node\":\">= 14\"},\"devDependencies\":{\"@types/async-retry\":\"1.4.1\",\"@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\",\"typescript\":\"4.3.4\"},\"jest\":{\"preset\":\"ts-jest\",\"testEnvironment\":\"node\",\"verbose\":false,\"setupFilesAfterEnv\":[\"<rootDir>/tests/setup/index.ts\"]},\"dependencies\":{\"@vercel/build-utils\":\"5.7.2\",\"@vercel/routing-utils\":\"2.1.3\",\"@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\"}}");
|
256391
256630
|
|
256392
256631
|
/***/ }),
|
256393
256632
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "28.
|
3
|
+
"version": "28.10.1",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -41,16 +41,16 @@
|
|
41
41
|
"node": ">= 14"
|
42
42
|
},
|
43
43
|
"dependencies": {
|
44
|
-
"@vercel/build-utils": "5.7.
|
45
|
-
"@vercel/go": "2.2.
|
46
|
-
"@vercel/hydrogen": "0.0.
|
47
|
-
"@vercel/next": "3.3.
|
48
|
-
"@vercel/node": "2.8.
|
49
|
-
"@vercel/python": "3.1.
|
50
|
-
"@vercel/redwood": "1.0.
|
51
|
-
"@vercel/remix": "1.1.
|
52
|
-
"@vercel/ruby": "1.3.
|
53
|
-
"@vercel/static-build": "1.0.
|
44
|
+
"@vercel/build-utils": "5.7.2",
|
45
|
+
"@vercel/go": "2.2.21",
|
46
|
+
"@vercel/hydrogen": "0.0.35",
|
47
|
+
"@vercel/next": "3.3.5",
|
48
|
+
"@vercel/node": "2.8.2",
|
49
|
+
"@vercel/python": "3.1.31",
|
50
|
+
"@vercel/redwood": "1.0.41",
|
51
|
+
"@vercel/remix": "1.1.3",
|
52
|
+
"@vercel/ruby": "1.3.47",
|
53
|
+
"@vercel/static-build": "1.0.44",
|
54
54
|
"update-notifier": "5.1.0"
|
55
55
|
},
|
56
56
|
"devDependencies": {
|
@@ -60,8 +60,6 @@
|
|
60
60
|
"@sindresorhus/slugify": "0.11.0",
|
61
61
|
"@swc/core": "1.2.218",
|
62
62
|
"@tootallnate/once": "1.1.2",
|
63
|
-
"@types/ansi-escapes": "3.0.0",
|
64
|
-
"@types/ansi-regex": "4.0.0",
|
65
63
|
"@types/async-retry": "1.2.1",
|
66
64
|
"@types/bytes": "3.0.0",
|
67
65
|
"@types/chance": "1.1.3",
|
@@ -95,17 +93,17 @@
|
|
95
93
|
"@types/which": "1.3.2",
|
96
94
|
"@types/write-json-file": "2.2.1",
|
97
95
|
"@types/yauzl-promise": "2.1.0",
|
98
|
-
"@vercel/client": "12.2.
|
96
|
+
"@vercel/client": "12.2.23",
|
99
97
|
"@vercel/error-utils": "1.0.3",
|
100
|
-
"@vercel/frameworks": "1.1.
|
101
|
-
"@vercel/fs-detectors": "3.5.
|
98
|
+
"@vercel/frameworks": "1.1.16",
|
99
|
+
"@vercel/fs-detectors": "3.5.6",
|
102
100
|
"@vercel/fun": "1.0.4",
|
103
101
|
"@vercel/ncc": "0.24.0",
|
104
102
|
"@zeit/source-map-support": "0.6.2",
|
105
103
|
"ajv": "6.12.2",
|
106
104
|
"alpha-sort": "2.0.1",
|
107
|
-
"ansi-escapes": "3.
|
108
|
-
"ansi-regex": "
|
105
|
+
"ansi-escapes": "4.3.2",
|
106
|
+
"ansi-regex": "5.0.1",
|
109
107
|
"arg": "5.0.0",
|
110
108
|
"async-listen": "1.2.0",
|
111
109
|
"async-retry": "1.1.3",
|
@@ -161,8 +159,9 @@
|
|
161
159
|
"rimraf": "3.0.2",
|
162
160
|
"semver": "5.5.0",
|
163
161
|
"serve-handler": "6.1.1",
|
164
|
-
"strip-ansi": "
|
162
|
+
"strip-ansi": "6.0.1",
|
165
163
|
"stripe": "5.1.0",
|
164
|
+
"supports-hyperlinks": "2.2.0",
|
166
165
|
"tar-fs": "1.16.3",
|
167
166
|
"test-listen": "1.1.0",
|
168
167
|
"text-table": "0.2.0",
|
@@ -194,5 +193,5 @@
|
|
194
193
|
"<rootDir>/test/**/*.test.ts"
|
195
194
|
]
|
196
195
|
},
|
197
|
-
"gitHead": "
|
196
|
+
"gitHead": "cb29bfdd684893cace5454f50a11a777407a9e45"
|
198
197
|
}
|