nep-cli 0.1.3 → 0.1.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/bin/index.js +4 -4
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -312,7 +312,7 @@ program
|
|
|
312
312
|
.command('open [programName]')
|
|
313
313
|
.description('Open a program in Windows/macOS')
|
|
314
314
|
.action(async (programName) => {
|
|
315
|
-
const programs = ['camera
|
|
315
|
+
const programs = ['camera', 'hxri', 'rize', 'sharo'];
|
|
316
316
|
|
|
317
317
|
// If a program name is provided as an argument, use it; otherwise, show autocomplete
|
|
318
318
|
if (!programName) {
|
|
@@ -763,7 +763,7 @@ program
|
|
|
763
763
|
|
|
764
764
|
program
|
|
765
765
|
.command('listen <topic>')
|
|
766
|
-
.description('
|
|
766
|
+
.description('Subscribe to a NEP+ topic')
|
|
767
767
|
.action(async (topic) => {
|
|
768
768
|
const interfaces = os.networkInterfaces();
|
|
769
769
|
|
|
@@ -813,7 +813,7 @@ program
|
|
|
813
813
|
|
|
814
814
|
program
|
|
815
815
|
.command('eth-listen <topic>')
|
|
816
|
-
.description('
|
|
816
|
+
.description('Subscribe to a NEP+ topic over Ethernet')
|
|
817
817
|
.action(async (topic) => {
|
|
818
818
|
const interfaces = os.networkInterfaces();
|
|
819
819
|
|
|
@@ -874,7 +874,7 @@ program
|
|
|
874
874
|
|
|
875
875
|
program
|
|
876
876
|
.command('wifi-listen <topic>')
|
|
877
|
-
.description('
|
|
877
|
+
.description('Subscribe to a NEP+ topic over Wi-Fi')
|
|
878
878
|
.action(async (topic) => {
|
|
879
879
|
const interfaces = os.networkInterfaces();
|
|
880
880
|
|