openfin-cli 4.0.0-alpha.3 → 4.0.0
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/README.md +1 -1
- package/dist/cli.js +3 -4
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -55,10 +55,9 @@ const yargsParser = yargs(hideBin(process.argv))
|
|
|
55
55
|
if (argv.config && argv.url) {
|
|
56
56
|
throw new Error('Cannot use both config and url options at the same time');
|
|
57
57
|
}
|
|
58
|
-
//
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
throw new Error('While using the URL option, you cannot use the platform, devtools-port, runtime-version, or save options cannot be used');
|
|
58
|
+
// These options have no effect when using the config option
|
|
59
|
+
if (argv.config && (argv.platform || argv['devtools-port'] || argv['runtime-version'] || argv.save)) {
|
|
60
|
+
throw new Error('While using the config option, you cannot use the platform, devtools-port, runtime-version, or save options.');
|
|
62
61
|
}
|
|
63
62
|
return true;
|
|
64
63
|
})
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const API_VERSION = '4.0.0
|
|
1
|
+
export const API_VERSION = '4.0.0';
|