@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/cli",
3
- "version": "2.18.4-rc.3",
3
+ "version": "2.18.4",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -99,6 +99,10 @@ export async function runUpload(processorConfig: YamlProjectConfig, argv: string
99
99
  process.exit(0)
100
100
  }
101
101
 
102
+ if (options._unknown?.length) {
103
+ console.log(chalk.yellow('Unknown option:', options._unknown.join(' ')))
104
+ }
105
+
102
106
  if (options.nobuild) {
103
107
  processorConfig.build = false
104
108
  }
package/src/index.ts CHANGED
@@ -29,10 +29,6 @@ if (!mainOptions.command) {
29
29
  process.exit(0)
30
30
  }
31
31
 
32
- if (argv.length) {
33
- console.log(chalk.yellow('Unknown option:', argv.join(' ')))
34
- }
35
-
36
32
  if (mainOptions.command === 'login') {
37
33
  runLogin(argv)
38
34
  } else if (mainOptions.command === 'create') {