Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions packages/cli/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,43 +236,43 @@ export async function parseArguments(settings: Settings): Promise<CliArgs> {
})
.deprecateOption(
'telemetry',
'Use settings.json instead. This flag will be removed in a future version.',
'Use the "telemetry.enabled" setting in settings.json instead. This flag will be removed in a future version.',
)
.deprecateOption(
'telemetry-target',
'Use settings.json instead. This flag will be removed in a future version.',
'Use the "telemetry.target" setting in settings.json instead. This flag will be removed in a future version.',
)
.deprecateOption(
'telemetry-otlp-endpoint',
'Use settings.json instead. This flag will be removed in a future version.',
'Use the "telemetry.otlpEndpoint" setting in settings.json instead. This flag will be removed in a future version.',
)
.deprecateOption(
'telemetry-otlp-protocol',
'Use settings.json instead. This flag will be removed in a future version.',
'Use the "telemetry.otlpProtocol" setting in settings.json instead. This flag will be removed in a future version.',
)
.deprecateOption(
'telemetry-log-prompts',
'Use settings.json instead. This flag will be removed in a future version.',
'Use the "telemetry.logPrompts" setting in settings.json instead. This flag will be removed in a future version.',
)
.deprecateOption(
'telemetry-outfile',
'Use settings.json instead. This flag will be removed in a future version.',
'Use the "telemetry.outfile" setting in settings.json instead. This flag will be removed in a future version.',
)
.deprecateOption(
'show-memory-usage',
'Use settings.json instead. This flag will be removed in a future version.',
'Use the "ui.showMemoryUsage" setting in settings.json instead. This flag will be removed in a future version.',
)
.deprecateOption(
'sandbox-image',
'Use settings.json instead. This flag will be removed in a future version.',
'Use the "tools.sandbox" setting in settings.json instead. This flag will be removed in a future version.',
)
.deprecateOption(
'proxy',
'Use settings.json instead. This flag will be removed in a future version.',
'Use the "proxy" setting in settings.json instead. This flag will be removed in a future version.',
)
.deprecateOption(
'checkpointing',
'Use settings.json instead. This flag will be removed in a future version.',
'Use the "general.checkpointing.enabled" setting in settings.json instead. This flag will be removed in a future version.',
)
.deprecateOption(
'all-files',
Expand Down
Loading