@ibm-functions/shell-local-plugin
Advanced tools
Comparing version 0.0.20 to 0.0.21
10
docs.js
@@ -29,7 +29,7 @@ /* | ||
commandPrefix: 'local', | ||
available: [{ command: 'invoke', docs: invoke, partial: '<action|activationId>' }, | ||
{ command: 'debug', docs: debug, partial: '<action|activationId>' }, | ||
{ command: 'init', docs: init, partial: '<action>' }, | ||
{ command: 'kill', docs: kill, partial: true }, // this | ||
{ command: 'clean', docs: clean, partial: true } // and this are dangerous, so make them partial | ||
available: [{ command: 'invoke', docs: invoke }, | ||
{ command: 'debug', docs: debug }, | ||
{ command: 'init', docs: init }, | ||
{ command: 'kill', docs: kill, partial: true }, // this... | ||
{ command: 'clean', docs: clean, partial: true } // ... and this are dangerous, so make them partial | ||
], | ||
@@ -36,0 +36,0 @@ related: ['help'] |
{ | ||
"name": "@ibm-functions/shell-local-plugin", | ||
"version": "0.0.20", | ||
"version": "0.0.21", | ||
"description": "An IBM Cloud Functions Shell plugin that lets users run and debug actions locally in a docker container", | ||
@@ -5,0 +5,0 @@ "main": "plugin.js", |
@@ -19,4 +19,5 @@ /* | ||
title: 'Local activations and debugging', | ||
overall: 'This plugin lets you run actions in a local Docker container for testing and debugging purposes', | ||
invoke: 'Run an action or activation locally. When replaying an activation, the plugin will fetch its previous activation (if available) to get the input data. You can also provide the input data with -p.', | ||
overall: 'Run actions in a local Docker container for testing and debugging purposes.', | ||
invoke: 'Run an action or activation locally', | ||
invoke2: 'When replaying an activation, the plugin will fetch its previous activation (if available) to get the input data. You can also provide the input data with -p.', | ||
debug: 'Run an action or activation locally, and open a debugger in the sidecar (NodeJS only)', | ||
@@ -23,0 +24,0 @@ init: 'Start a Docker container with the runtime image of an action', |
1020
72106