@putdotio/taizn 1.13.0 → 1.14.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/package.json +8 -1
package/README.md
CHANGED
|
@@ -166,8 +166,8 @@ bundle local app assets but production packages should load hosted asset URLs.
|
|
|
166
166
|
|
|
167
167
|
## Docs
|
|
168
168
|
|
|
169
|
-
- [Contributing](./CONTRIBUTING.md)
|
|
170
169
|
- [Distribution](./docs/DISTRIBUTION.md)
|
|
170
|
+
- [Live Test](./live-test/README.md)
|
|
171
171
|
- [Samsung TV Remote](./docs/TV_REMOTE.md)
|
|
172
172
|
- [Security](./SECURITY.md)
|
|
173
173
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@putdotio/taizn",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "A tiny CLI companion for interacting with Tizen ecosystem.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -37,9 +37,16 @@
|
|
|
37
37
|
"clean": "rm -rf .turbo coverage dist",
|
|
38
38
|
"dev": "vp pack src/taizn.ts --watch",
|
|
39
39
|
"live:test": "vp pack src/taizn.ts && node live-test/run-live-test.ts",
|
|
40
|
+
"live:test:doctor": "vp pack src/taizn.ts && node live-test/run-live-test.ts --doctor",
|
|
41
|
+
"live:test:doctor:connect": "vp pack src/taizn.ts && node live-test/run-live-test.ts --doctor --connect",
|
|
40
42
|
"live:test:install": "vp pack src/taizn.ts && node live-test/run-live-test.ts --install",
|
|
41
43
|
"live:test:prove": "vp pack src/taizn.ts && node live-test/run-live-test.ts --prove",
|
|
42
44
|
"live:test:profile": "vp pack src/taizn.ts && node live-test/run-live-test.ts --profile",
|
|
45
|
+
"live:test:roundtrip": "vp pack src/taizn.ts && node live-test/run-live-test.ts --roundtrip",
|
|
46
|
+
"live:test:remote": "vp pack src/taizn.ts && node live-test/run-live-test.ts --remote",
|
|
47
|
+
"live:test:smoke": "vp pack src/taizn.ts && node live-test/run-live-test.ts --smoke",
|
|
48
|
+
"live:test:tv-assets": "vp pack src/taizn.ts && node live-test/run-live-test.ts --roundtrip --tv-assets",
|
|
49
|
+
"live:test:tv-assets:production": "vp pack src/taizn.ts && node live-test/run-live-test.ts --roundtrip --tv-assets --production",
|
|
43
50
|
"prepack": "vp pack src/taizn.ts",
|
|
44
51
|
"prepare": "./scripts/prepare-effect.sh",
|
|
45
52
|
"smoke": "vp pack src/taizn.ts && node dist/taizn.mjs --version && node dist/taizn.mjs --help >/dev/null",
|