@ranger1/dx 0.1.54 → 0.1.55
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/lib/vercel-deploy.js +0 -2
- package/package.json +1 -1
package/lib/vercel-deploy.js
CHANGED
|
@@ -381,7 +381,6 @@ export async function deployToVercel(target, options = {}) {
|
|
|
381
381
|
VERCEL_PROJECT_ID: projectId,
|
|
382
382
|
})
|
|
383
383
|
|
|
384
|
-
const buildEnvArgs = withEnvFlag(explicitEnvEntries, '--build-env')
|
|
385
384
|
const deployEnvArgs = withEnvFlag(explicitEnvEntries, '--env')
|
|
386
385
|
|
|
387
386
|
const envVars = {
|
|
@@ -423,7 +422,6 @@ export async function deployToVercel(target, options = {}) {
|
|
|
423
422
|
cwd: projectRoot,
|
|
424
423
|
orgId,
|
|
425
424
|
projectId,
|
|
426
|
-
explicitEnvArgs: buildEnvArgs,
|
|
427
425
|
},
|
|
428
426
|
)
|
|
429
427
|
|