test-bdk-cli 1.0.8 → 1.0.9
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 +4 -3
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -16,7 +16,8 @@ The BoldDesk Marketplace SDK CLI is protected by See [LICENSE](https://www.boldd
|
|
|
16
16
|
- `bdk apps:test` - test a BoldDesk app
|
|
17
17
|
- `bdk apps:validate` - validate a BoldDesk app manifest
|
|
18
18
|
- `bdk apps:version` - display version information
|
|
19
|
+
- `bdk apps:help` - command details
|
|
19
20
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
bolddesk
|
|
21
|
+
## Keywords
|
|
22
|
+
|
|
23
|
+
`bolddesk` `marketplace` `sdk` `cli` `command-line-tools` `apps` `developer`
|
package/package.json
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "test-bdk-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "test CLI",
|
|
5
5
|
"author": "@BoldDesk",
|
|
6
6
|
"bin": {
|
|
7
7
|
"bdk": "dist/index.js"
|
|
8
8
|
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"bdk",
|
|
11
|
+
"bolddesk",
|
|
12
|
+
"command",
|
|
13
|
+
"cli",
|
|
14
|
+
"sdk"
|
|
15
|
+
],
|
|
9
16
|
"npmRegistry": "https://registry.npmjs.org",
|
|
10
17
|
"license": "SEE LICENSE IN README.md",
|
|
11
18
|
"scripts": {
|
|
@@ -60,10 +67,7 @@
|
|
|
60
67
|
"/src/"
|
|
61
68
|
],
|
|
62
69
|
"transform": {
|
|
63
|
-
"^.+\\.tsx?$": [
|
|
64
|
-
"ts-jest",
|
|
65
|
-
{}
|
|
66
|
-
]
|
|
70
|
+
"^.+\\.tsx?$": ["ts-jest", {}]
|
|
67
71
|
}
|
|
68
72
|
}
|
|
69
73
|
}
|