@webos-tools/cli 3.1.0 → 3.1.2
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/CHANGELOG.md +16 -2
- package/README.md +21 -19
- package/bin/ares-config.js +6 -3
- package/bin/ares-device.js +2 -2
- package/bin/ares-log.js +6 -2
- package/bin/ares-pull.js +1 -1
- package/bin/ares-push.js +1 -1
- package/bin/ares-setup-device.js +8 -11
- package/bin/ares-shell.js +1 -1
- package/bin/ares.js +1 -1
- package/files/conf/ares.json +5 -5
- package/files/conf/novacom-devices.json +18 -1
- package/files/conf-base/env/sdk-apollo.json +8 -0
- package/files/conf-base/profile/config-apollo.json +29 -0
- package/files/conf-base/profile/config-ose.json +1 -1
- package/files/conf-base/template-conf/apollo-sdk-templates.json +51 -0
- package/files/help/ares-config.help +6 -1
- package/files/help/ares-device.help +15 -0
- package/files/help/ares-generate.help +27 -1
- package/files/help/ares-inspect.help +6 -0
- package/files/help/ares-install.help +5 -0
- package/files/help/ares-launch.help +5 -0
- package/files/help/ares-server.help +5 -0
- package/files/help/ares-setup-device.help +40 -0
- package/files/help/ares.help +5 -0
- package/files/schema/NovacomDevices.schema +2 -1
- package/files/templates/apollo-sdk-templates/appinfo/appinfo.json +10 -0
- package/files/templates/apollo-sdk-templates/bootplate-web/index.html +88 -0
- package/files/templates/apollo-sdk-templates/hosted-webapp/index.html +14 -0
- package/files/templates/apollo-sdk-templates/icon/icon.png +0 -0
- package/files/templates/apollo-sdk-templates/js-service/helloclient.js +31 -0
- package/files/templates/apollo-sdk-templates/js-service/helloworld_webos_service.js +188 -0
- package/files/templates/apollo-sdk-templates/serviceinfo/package.json +11 -0
- package/files/templates/apollo-sdk-templates/serviceinfo/services.json +8 -0
- package/lib/base/novacom.js +12 -1
- package/lib/base/setup-device.js +1 -1
- package/lib/device.js +1 -1
- package/lib/inspect.js +0 -1
- package/lib/package.js +3 -1
- package/lib/shell.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/spec/jsSpecs/ares-config.spec.js +10 -0
- package/spec/jsSpecs/ares-generate.spec.js +4 -4
- package/spec/jsSpecs/ares-log.spec.js +1 -1
- package/spec/test_data/ares-generate.json +18 -1
- package/spec/test_data/ares.json +17 -0
- package/webos-tools-cli-3.1.2.tgz +0 -0
package/spec/test_data/ares.json
CHANGED
|
@@ -29,5 +29,22 @@
|
|
|
29
29
|
"ares-server Run a local web server",
|
|
30
30
|
"ares-setup-device Add or modify the information of the devices to use"
|
|
31
31
|
]
|
|
32
|
+
},
|
|
33
|
+
"apollo": {
|
|
34
|
+
"list": [
|
|
35
|
+
"ares-config Configure webOS CLI",
|
|
36
|
+
"ares-device Display the device information",
|
|
37
|
+
"ares-generate Generate files for a webOS app or service",
|
|
38
|
+
"ares-inspect Enable Web Inspector or Node's Inspector",
|
|
39
|
+
"ares-install Install or remove the app on the device",
|
|
40
|
+
"ares-launch Launch or close the app",
|
|
41
|
+
"ares-log Show or save logs of webOS apps and services",
|
|
42
|
+
"ares-package Create or analyze a package containing a webOS app or service",
|
|
43
|
+
"ares-pull Pull the file from the device",
|
|
44
|
+
"ares-push Push the file to the device",
|
|
45
|
+
"ares-server Run a local web server",
|
|
46
|
+
"ares-setup-device Add or modify the information of the devices to use",
|
|
47
|
+
"ares-shell Open a device terminal or run a command"
|
|
48
|
+
]
|
|
32
49
|
}
|
|
33
50
|
}
|
|
Binary file
|