clubhouse-cli
Advanced tools
Comparing version 1.11.0 to 1.12.0
{ | ||
"name": "clubhouse-cli", | ||
"version": "1.11.0", | ||
"version": "1.12.0", | ||
"description": "A command line tool for viewing, creating and updating clubhouse.io stories", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -114,3 +114,3 @@ # clubhouse-cli | ||
The default sorting for stories found is `state.position:asc,id:asc`, which translates to "sort by associated state position ascending, then by story id ascending within the same state." | ||
The default sorting for stories found is `state.position:asc,position:asc`, which translates to "sort by associated state position ascending, then by story position ascending within the same state." | ||
@@ -127,21 +127,27 @@ ### Story | ||
-I, --idonly Print only ID of story results | ||
-s, --state [id|name] Update workflow state of story | ||
-e, --estimate [number] Update estimate of story | ||
-d, --description [text] Update description of story | ||
-D, --download Download all attached files | ||
--download-dir [path] Directory to download files to | ||
-E, --epic [id|name] Update epic of story | ||
-f, --format [template] Format story output by template | ||
-l, --label [id|name] Update story with labels, comma-separated | ||
-c, --comment [text] Add comment to story | ||
-o, --owner [id|name] Update owners of story, comma-separated | ||
-O, --open Open story in browser | ||
-q, --quiet Print only story output, no loading dialog | ||
-t, --title [text] Update title of story | ||
-y, --type [name] Set type of story | ||
--from-git Fetch story parsed by ID in current git branch | ||
--git-branch Checkout git branch from story slug <mention-name>/ch<id>/<type>-<title> | ||
as required by the Git integration: https://bit.ly/2RKO1FF | ||
-h, --help output usage information | ||
-I, --idonly Print only ID of story results | ||
-s, --state [id|name] Update workflow state of story | ||
-e, --estimate [number] Update estimate of story | ||
-d, --description [text] Update description of story | ||
-D, --download Download all attached files | ||
--download-dir [path] Directory to download files to | ||
-E, --epic [id|name] Update epic of story | ||
-f, --format [template] Format story output by template | ||
--from-git Fetch story parsed by ID in current git branch | ||
--git-branch Checkout git branch from story slug <mention-name>/ch<id>/<type>-<title> | ||
as required by the Git integration: https://bit.ly/2RKO1FF | ||
-l, --label [id|name] Update story with labels, comma-separated | ||
--move-after [id] Move story to position below story ID | ||
--move-before [id] Move story to position above story ID | ||
--move-down [n] Move story position downward by n stories | ||
--move-up [n] Move story position upward by n stories | ||
-c, --comment [text] Add comment to story | ||
-o, --owners [id|name] Update owners of story, comma-separated | ||
-O, --open Open story in browser | ||
-q, --quiet Print only story output, no loading dialog | ||
-t, --title [text] Update title of story | ||
--task [text] Create new task on story | ||
--task-complete [text] Toggle completion of story task matching text | ||
-y, --type [name] Set type of story | ||
-h, --help output usage information | ||
~~~ | ||
@@ -148,0 +154,0 @@ |
@@ -199,3 +199,4 @@ const { execSync } = require('child_process'); | ||
.replace(/[^a-z0-9-]/g, '') | ||
.slice(0, 30); | ||
.slice(0, 30) | ||
.replace(/-$/, ''); | ||
const branch = `${prefix}${slug}`; | ||
@@ -202,0 +203,0 @@ debug('checking out git branch: ' + branch); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
60754
314
312