@localess/cli 0.0.1-dev.20260216154305 → 0.0.1-dev.20260216155349
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -527,7 +527,7 @@ var zTranslationUpdateSchema = import_zod.z.object({
|
|
|
527
527
|
});
|
|
528
528
|
|
|
529
529
|
// src/commands/translations/push/index.ts
|
|
530
|
-
var translationsPushCommand = new import_commander4.Command("push
|
|
530
|
+
var translationsPushCommand = new import_commander4.Command("push").argument("<locale>", "Locale to push").description("Push locale translations to Localess").requiredOption("-f, --file <path>", "Path to the translations file to push").option("-t, --type <type>", `Push type. Possible values are : ${Object.values(TranslationUpdateType)}`, "add-missing" /* ADD_MISSING */).action(async (locale, options) => {
|
|
531
531
|
console.log("Pushing translations with arguments:", locale);
|
|
532
532
|
console.log("Pushing translations with options:", options);
|
|
533
533
|
if (!isTranslationUpdateType(options.type)) {
|
package/dist/index.mjs
CHANGED
|
@@ -504,7 +504,7 @@ var zTranslationUpdateSchema = z.object({
|
|
|
504
504
|
});
|
|
505
505
|
|
|
506
506
|
// src/commands/translations/push/index.ts
|
|
507
|
-
var translationsPushCommand = new Command4("push
|
|
507
|
+
var translationsPushCommand = new Command4("push").argument("<locale>", "Locale to push").description("Push locale translations to Localess").requiredOption("-f, --file <path>", "Path to the translations file to push").option("-t, --type <type>", `Push type. Possible values are : ${Object.values(TranslationUpdateType)}`, "add-missing" /* ADD_MISSING */).action(async (locale, options) => {
|
|
508
508
|
console.log("Pushing translations with arguments:", locale);
|
|
509
509
|
console.log("Pushing translations with options:", options);
|
|
510
510
|
if (!isTranslationUpdateType(options.type)) {
|