vercel 41.7.8 → 42.0.0
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 +9 -6
- package/package.json +3 -3
package/dist/index.js
CHANGED
@@ -139605,7 +139605,7 @@ async function pullEnvRecords(client2, projectId, source, { target, gitBranch }
|
|
139605
139605
|
`Fetching Environment Variables of project ${projectId} and target ${target}`
|
139606
139606
|
);
|
139607
139607
|
const query = new import_url12.URLSearchParams();
|
139608
|
-
let url3 = `/
|
139608
|
+
let url3 = `/v3/env/pull/${projectId}`;
|
139609
139609
|
if (target) {
|
139610
139610
|
url3 += `/${encodeURIComponent(target)}`;
|
139611
139611
|
if (gitBranch) {
|
@@ -140834,10 +140834,13 @@ async function main2(client2) {
|
|
140834
140834
|
}
|
140835
140835
|
process.env.VERCEL = "1";
|
140836
140836
|
process.env.NOW_BUILDER = "1";
|
140837
|
-
|
140838
|
-
(
|
140839
|
-
|
140840
|
-
|
140837
|
+
try {
|
140838
|
+
await rootSpan.child("vc.doBuild").trace(
|
140839
|
+
(span) => doBuild(client2, project, buildsJson, cwd, outputDir, span)
|
140840
|
+
);
|
140841
|
+
} finally {
|
140842
|
+
await rootSpan.stop();
|
140843
|
+
}
|
140841
140844
|
return 0;
|
140842
140845
|
} catch (err) {
|
140843
140846
|
output_manager_default.prettyError(err);
|
@@ -166422,7 +166425,7 @@ async function dev(client2, opts, args2, telemetry2) {
|
|
166422
166425
|
envValues,
|
166423
166426
|
"vercel-cli:dev"
|
166424
166427
|
)) {
|
166425
|
-
output_manager_default.
|
166428
|
+
output_manager_default.debug(`Refreshing ${import_chalk59.default.green(VERCEL_OIDC_TOKEN)}`);
|
166426
166429
|
envValues[VERCEL_OIDC_TOKEN] = token;
|
166427
166430
|
await devServer.runDevCommand(true);
|
166428
166431
|
telemetry2.trackOidcTokenRefresh(++refreshCount);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "vercel",
|
3
|
-
"version": "
|
3
|
+
"version": "42.0.0",
|
4
4
|
"preferGlobal": true,
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"description": "The command-line interface for Vercel",
|
@@ -160,8 +160,8 @@
|
|
160
160
|
"xdg-app-paths": "5.1.0",
|
161
161
|
"yauzl-promise": "2.1.3",
|
162
162
|
"@vercel-internals/get-package-json": "1.0.0",
|
163
|
-
"@vercel-internals/
|
164
|
-
"@vercel-internals/
|
163
|
+
"@vercel-internals/constants": "1.0.4",
|
164
|
+
"@vercel-internals/types": "3.0.6"
|
165
165
|
},
|
166
166
|
"scripts": {
|
167
167
|
"test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail",
|