You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These commands option have been deprecated since 12.8.0 (25 months ago):
https://github.com/netlify/cli/releases/tag/v12.8.0.
Removes:
- `--httpProxyCertificateFilename`
- `--prodIfUnlocked`
- `--functionsPort`
- `--targetPort`
- `--edgeInspect`
- `--edgeInspectBrk`
- `--replaceExisting`
- `--gitRemoteName`
The change in 12.8.0 also intended to rename `--httpProxy` to `--http-proxy` but there was a typo resulting in that
never happening. To err on the safe side, this fixes that change without removing the camel case variant yet.
Copy file name to clipboardExpand all lines: src/commands/deploy/index.ts
+1-6Lines changed: 1 addition & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -83,15 +83,10 @@ Support for package.json's main field, and intrinsic index.js entrypoints are co
83
83
newOption('-p, --prod','Deploy to production').default(false).conflicts(['alias','branch','prodIfUnlocked']),
84
84
)
85
85
.addOption(
86
-
newOption(
87
-
'--prodIfUnlocked',
88
-
'Old, prefer --prod-if-unlocked. Deploy to production if unlocked, create a draft otherwise',
89
-
)
86
+
newOption('--prod-if-unlocked','Deploy to production if unlocked, create a draft otherwise')
90
87
.default(false)
91
-
.hideHelp(true)
92
88
.conflicts(['alias','branch','prod']),
93
89
)
94
-
.option('--prod-if-unlocked','Deploy to production if unlocked, create a draft otherwise',false)
95
90
.option(
96
91
'--alias <name>',
97
92
'Specifies the alias for deployment, the string at the beginning of the deploy subdomain. Useful for creating predictable deployment URLs. Avoid setting an alias string to the same value as a deployed branch. `alias` doesn’t create a branch deploy and can’t be used in conjunction with the branch subdomain feature. Maximum 37 characters.',
'Old, prefer --edge-inspect-brk. Enable the V8 Inspector Protocol for Edge Functions and pause execution on the first line of code, with an optional address in the host:port format',
0 commit comments