@moxxy/cli 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bin.js CHANGED
@@ -123366,7 +123366,10 @@ async function runServeStatus(except, all) {
123366
123366
  return 0;
123367
123367
  }
123368
123368
  async function runServeForeground(argv, except, all) {
123369
- const setup = await bootSessionWithConfig(argv, { skipKeyPrompt: true });
123369
+ const setup = await bootSessionWithConfig(argv, {
123370
+ skipKeyPrompt: true,
123371
+ tolerateNoProvider: true
123372
+ });
123370
123373
  const { session, vault, config, scheduler, webhooks } = setup;
123371
123374
  const setupHandle = { scheduler, webhooks };
123372
123375
  let runnerServer;