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

86 lines (85 loc) 2.57 kB
{ "$schema": "http://json-schema.org/schema", "version": 2, "title": "Upload 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 }, "version": { "type": "string" }, "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 }, "tag": { "type": "string", "description": "Perform the operation for the given release tag." }, "autoTag": { "type": "boolean", "description": "Automatically determine a tag and perform the operation for it.", "default": false }, "extractTarget": { "type": "string", "description": "The target that extracts or generate the translation source file." }, "disableContentLength": { "type": "boolean", "description": "Disable Content-Length header when uploading data; use only when the upload operation fails with 'bad request'" }, "async": { "type": "boolean", "description": "Do not wait for the server to process the uploaded data and report errors." }, "project": { "type": "string", "description": "Only perform upload if the project slug or ID match the specified one" }, "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": [] }