We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b563670 commit 1e5830fCopy full SHA for 1e5830f
2 files changed
.changeset/wild-cameras-wash.md
@@ -1,2 +1,5 @@
1
---
2
+"lingo.dev": patch
3
4
+
5
+Add deprecation warning to 'i18n' command, directing users to use 'run' instead
packages/cli/src/cli/cmd/i18n.ts
@@ -94,6 +94,16 @@ export default new Command()
94
updateGitignore();
95
96
const ora = Ora();
97
98
+ // Show deprecation warning
99
+ console.log();
100
+ ora.warn(
101
+ chalk.yellow(
102
+ " DEPRECATED: 'i18n' is deprecated. Please use 'run' instead. Docs: https://lingo.dev/cli/commands/run",
103
+ ),
104
+ );
105
106
107
let flags: ReturnType<typeof parseFlags>;
108
109
try {
0 commit comments