@sentio/cli 2.18.4-rc.3 → 2.18.4

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/lib/index.js CHANGED
@@ -87580,6 +87580,9 @@ async function runUpload(processorConfig, argv2) {
87580
87580
  console.log(usage2);
87581
87581
  process.exit(0);
87582
87582
  }
87583
+ if (options._unknown?.length) {
87584
+ console.log(source_default.yellow("Unknown option:", options._unknown.join(" ")));
87585
+ }
87583
87586
  if (options.nobuild) {
87584
87587
  processorConfig.build = false;
87585
87588
  }
@@ -88264,9 +88267,6 @@ if (!mainOptions.command) {
88264
88267
  usage();
88265
88268
  process.exit(0);
88266
88269
  }
88267
- if (argv.length) {
88268
- console.log(source_default.yellow("Unknown option:", argv.join(" ")));
88269
- }
88270
88270
  if (mainOptions.command === "login") {
88271
88271
  runLogin(argv);
88272
88272
  } else if (mainOptions.command === "create") {