Moritz Raho
Moritz Raho
## Behavior ### Flags config ``` watermelon: flags.boolean({ default: true, allowNo: true }), apple: flags.string({ exclusive: ['no-watermelon'] }) ``` ### Execution ``` > cmd --no-watermelon --apple [executes] ``` ## Expected...
This issue updates and generalizes the discussion in https://github.com/adobe/aio-cli-plugin-console/issues/149 to the whole CLI. This is the result of an internal team discussion, points mentioned here were brought by @Himavanth @meryllblanchet...
**Describe the bug** Same as in https://github.com/adobe/aio-cli-plugin-app/issues/385 The command should only show logs for new invocations that occur AFTER the command is run
**Describe the bug** Relates to #21 Accessing an environment variable in the manifest yaml with `${*}` syntax breaks the `runtime deploy` cmd. As a comparison, this syntax works with wskdeploy...
See https://github.com/stipsan/ioredis-mock/blob/main/src/commands-utils/scan-command.common.js#L55 The start cursor may not accurately point to the "end" index of the last iteration when elements were removed in between calls.
## Reproduce From the REPL (`> node`) ```js Redis = require('ioredis-mock'); redis = new Redis() redis.defineCommand('scanWrapper', { lua: `local res = redis.call('SCAN', '0') for idx, member in ipairs(res[2]) do print(idx,...