UNPKG

@rxap/plugin-localazy

Version:

This package provides executors and generators for integrating Localazy, a translation management platform, into Nx workspaces. It allows for downloading and uploading translations, managing configuration, and initializing Localazy within a project. The p

67 lines (66 loc) 1.9 kB
{ "$schema": "http://json-schema.org/schema", "version": 2, "title": "Download executor", "description": "", "type": "object", "properties": { "readKey": { "type": "string", "description": "Provide the writeKey on the command line." }, "writeKey": { "type": "string", "description": "Provide the readkey on the command line." }, "keysJson": { "type": "string", "description": "Override the keys file name." }, "configJson": { "type": "string", "description": "Override the configuration file name." }, "workingDirectory": { "type": "string", "description": "Set the working directory that all paths are relative to." }, "dryRun": { "type": "boolean", "description": "Do not perform the actual operation, only simulate the process. No files are uploaded nor written.", "default": false }, "quite": { "type": "boolean", "description": "Quiet mode. Print only important information.", "default": false }, "force": { "type": "boolean", "description": "Force the upload operation if the validation step fails.", "default": false }, "autoTag": { "type": "boolean", "description": "Automatically determine a tag and perform the operation for it.", "default": false }, "tag": { "type": "string", "description": "Perform the operation for the given release tag." }, "branch": { "type": "string", "description": "Perform the operation for the given branch" }, "param": { "type": "string", "description": "Add extra parameter for processing; format is key:value" }, "failOnMissingGroups": { "type": "boolean", "description": "Fail when non-existent group is provided on the command line" } }, "required": [] }