Ver Fonte

Merge pull request #2443 from mnaamani/cli-add-missing-dep

cli: v0.5.1 - add missing dependency on protobuf package
Mokhtar Naamani há 3 anos atrás
pai
commit
1bda353cb7
2 ficheiros alterados com 6 adições e 5 exclusões
  1. 4 4
      cli/README.md
  2. 2 1
      cli/package.json

+ 4 - 4
cli/README.md

@@ -45,7 +45,7 @@ $ npm install -g @joystream/cli
 $ joystream-cli COMMAND
 running command...
 $ joystream-cli (-v|--version|version)
-@joystream/cli/0.5.0 linux-x64 node-v14.16.1
+@joystream/cli/0.5.1 linux-x64 node-v14.16.1
 $ joystream-cli --help [COMMAND]
 USAGE
   $ joystream-cli COMMAND
@@ -100,7 +100,7 @@ When using the CLI for the first time there are a few common steps you might wan
 * [`joystream-cli content:updateVideoCategory VIDEOCATEGORYID`](#joystream-cli-contentupdatevideocategory-videocategoryid)
 * [`joystream-cli content:updateVideoCensorshipStatus ID [STATUS]`](#joystream-cli-contentupdatevideocensorshipstatus-id-status)
 * [`joystream-cli content:video VIDEOID`](#joystream-cli-contentvideo-videoid)
-* [`joystream-cli content:videos CHANNELID`](#joystream-cli-contentvideos-channelid)
+* [`joystream-cli content:videos [CHANNELID]`](#joystream-cli-contentvideos-channelid)
 * [`joystream-cli council:info`](#joystream-cli-councilinfo)
 * [`joystream-cli help [COMMAND]`](#joystream-cli-help-command)
 * [`joystream-cli working-groups:application WGAPPLICATIONID`](#joystream-cli-working-groupsapplication-wgapplicationid)
@@ -667,13 +667,13 @@ ARGUMENTS
 
 _See code: [src/commands/content/video.ts](https://github.com/Joystream/joystream/blob/master/cli/src/commands/content/video.ts)_
 
-## `joystream-cli content:videos CHANNELID`
+## `joystream-cli content:videos [CHANNELID]`
 
 List existing content directory videos.
 
 ```
 USAGE
-  $ joystream-cli content:videos CHANNELID
+  $ joystream-cli content:videos [CHANNELID]
 
 ARGUMENTS
   CHANNELID  ID of the Channel

+ 2 - 1
cli/package.json

@@ -1,7 +1,7 @@
 {
   "name": "@joystream/cli",
   "description": "Command Line Interface for Joystream community and governance activities",
-  "version": "0.5.0",
+  "version": "0.5.1",
   "author": "Leszek Wiesner",
   "bin": {
     "joystream-cli": "./bin/run"
@@ -10,6 +10,7 @@
   "dependencies": {
     "@apidevtools/json-schema-ref-parser": "^9.0.6",
     "@ffprobe-installer/ffprobe": "^1.1.0",
+    "@joystream/content-metadata-protobuf": "^1.1.0",
     "@joystream/types": "^0.16.1",
     "@oclif/command": "^1.5.19",
     "@oclif/config": "^1.14.0",