DenReg/cli
Fabian Stamm 7c1166bf87
Some checks failed
continuous-integration/drone/push Build is failing
Update dependencies
2021-01-04 22:57:14 +01:00
..
commands Improving update support 2020-10-14 22:04:18 +02:00
helper Improving error messages 2020-09-14 23:47:48 +02:00
denreg.ts [CLI] Add help message when no subcommand is specified 2020-09-15 11:40:25 +02:00
deps.ts Update dependencies 2021-01-04 22:57:14 +01:00
global.ts Add ability to add root folder to meta.json (only affects upload) 2020-10-14 16:34:18 +02:00
meta.json Update dependencies 2021-01-04 22:57:14 +01:00
pre.ts Add automatic version reading 2020-08-16 19:37:09 +02:00
README.md
version.ts Update dependencies 2021-01-04 22:57:14 +01:00

A CLI for the denreg registry.

Installation

Recommended way for installation is deno install -A --unstable https://deno.hibas123.de/raw/@denreg-cli/denreg.ts Since the cli requires access to:

  • reading and writing files
  • access to environment variables
  • network access
  • run programs

The -A flag is the easiest way to install. You can however manually grant the required permissions.

permission reason
--allow-read Read configuration files (~/.denreg) as well as your project files on publish
--allow-write Write configuration file while using setup and init as well as during publish for temporary files
--allow-net Access to network for uploading to the registry (can be exclusive to the registry)
--allow-env Required to get config file path relative to user home directory
--allow-run Required to run hook scripts