@blocklet/cli 1.16.43-beta-20250510-123357-65a2988c → 1.16.44-beta-20250512-155818-937e465d
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 +31 -29
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Powered By
|
|
|
28
28
|
/ ___ \| | | (__| |_) | | (_) | (__| <
|
|
29
29
|
/_/ \_\_| \___|____/|_|\___/ \___|_|\_\
|
|
30
30
|
|
|
31
|
-
Blocklet CLI v1.16.
|
|
31
|
+
Blocklet CLI v1.16.43
|
|
32
32
|
|
|
33
33
|
Usage: blocklet server [options] [command]
|
|
34
34
|
|
|
@@ -62,36 +62,38 @@ None of the above command seems help? Consider command line utility blocklet.
|
|
|
62
62
|
Usage: blocklet [options] [command]
|
|
63
63
|
|
|
64
64
|
Options:
|
|
65
|
-
-V, --version
|
|
66
|
-
-y --yes
|
|
67
|
-
-h, --help
|
|
65
|
+
-V, --version output the version number
|
|
66
|
+
-y --yes Automatic yes to prompts (default: false)
|
|
67
|
+
-h, --help display help for command
|
|
68
68
|
|
|
69
69
|
Commands:
|
|
70
|
-
bundle [options]
|
|
71
|
-
|
|
72
|
-
deploy [options] <folder>
|
|
73
|
-
|
|
74
|
-
dev [options]
|
|
75
|
-
test
|
|
76
|
-
init [options]
|
|
77
|
-
meta
|
|
78
|
-
version [options] [newVersion]
|
|
79
|
-
upload [options] [metafile]
|
|
80
|
-
exec [options] <script>
|
|
81
|
-
debug [options] <value>
|
|
82
|
-
connect [options] <store-url>
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
70
|
+
bundle [options] Bundle a blocklet that can run in Blocklet
|
|
71
|
+
Server
|
|
72
|
+
deploy [options] <folder> Deploy blocklet from local directory to
|
|
73
|
+
Blocklet Server
|
|
74
|
+
dev [options] Develop blocklet from current directory
|
|
75
|
+
test Setup blocklet test environment
|
|
76
|
+
init [options] Create an empty blocklet project
|
|
77
|
+
meta Print blocklet meta from a directory
|
|
78
|
+
version [options] [newVersion] Bump blocklet version and persist to disk
|
|
79
|
+
upload [options] [metafile] Upload the blocklet to blocklet store
|
|
80
|
+
exec [options] <script> Execute script in blocklet running context
|
|
81
|
+
debug [options] <value> Setting debug environment for blocklet
|
|
82
|
+
connect [options] <store-url> Connect to blocklet store. This command
|
|
83
|
+
will set store configuration by "blocklet
|
|
84
|
+
config"
|
|
85
|
+
create [options] [name] Bootstrap a brand new blocklet from various
|
|
86
|
+
starter templates within minutes
|
|
87
|
+
component [options] [command...] Execute the Component Studio CLI commands
|
|
88
|
+
add [options] <component> Add component to blocklet.yml
|
|
89
|
+
remove <component> Remove component from blocklet.yml
|
|
90
|
+
cleanup [options] Do some blocklet level cleanup work
|
|
91
|
+
document Manage DID document for the blocklet or the
|
|
92
|
+
Blocklet Server
|
|
93
|
+
config [options] Manage the configuration for Blocklet CLI,
|
|
94
|
+
use blocklet config help to see detail
|
|
95
|
+
server [options] Manage Blocklet Server
|
|
96
|
+
help [command] display help for command
|
|
95
97
|
```
|
|
96
98
|
|
|
97
99
|
## Documentation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/cli",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.44-beta-20250512-155818-937e465d",
|
|
4
4
|
"description": "Command line tools to manage Blocklet Server",
|
|
5
5
|
"homepage": "https://github.com/ArcBlock/blocklet-server#readme",
|
|
6
6
|
"bin": {
|
|
@@ -35,25 +35,25 @@
|
|
|
35
35
|
"url": "https://github.com/ArcBlock/blocklet-server/issues"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@abtnode/blocklet-services": "1.16.
|
|
39
|
-
"@abtnode/client": "1.16.
|
|
40
|
-
"@abtnode/constant": "1.16.
|
|
41
|
-
"@abtnode/core": "1.16.
|
|
42
|
-
"@abtnode/logger": "1.16.
|
|
43
|
-
"@abtnode/router-provider": "1.16.
|
|
44
|
-
"@abtnode/util": "1.16.
|
|
45
|
-
"@abtnode/webapp": "1.16.
|
|
38
|
+
"@abtnode/blocklet-services": "1.16.44-beta-20250512-155818-937e465d",
|
|
39
|
+
"@abtnode/client": "1.16.44-beta-20250512-155818-937e465d",
|
|
40
|
+
"@abtnode/constant": "1.16.44-beta-20250512-155818-937e465d",
|
|
41
|
+
"@abtnode/core": "1.16.44-beta-20250512-155818-937e465d",
|
|
42
|
+
"@abtnode/logger": "1.16.44-beta-20250512-155818-937e465d",
|
|
43
|
+
"@abtnode/router-provider": "1.16.44-beta-20250512-155818-937e465d",
|
|
44
|
+
"@abtnode/util": "1.16.44-beta-20250512-155818-937e465d",
|
|
45
|
+
"@abtnode/webapp": "1.16.44-beta-20250512-155818-937e465d",
|
|
46
46
|
"@arcblock/did": "1.20.8",
|
|
47
47
|
"@arcblock/event-hub": "1.20.8",
|
|
48
48
|
"@arcblock/ipfs-only-hash": "^0.0.2",
|
|
49
49
|
"@arcblock/jwt": "1.20.8",
|
|
50
50
|
"@arcblock/ws": "1.20.8",
|
|
51
|
-
"@blocklet/constant": "1.16.
|
|
51
|
+
"@blocklet/constant": "1.16.44-beta-20250512-155818-937e465d",
|
|
52
52
|
"@blocklet/form-collector": "^0.1.8",
|
|
53
|
-
"@blocklet/images": "1.16.
|
|
54
|
-
"@blocklet/meta": "1.16.
|
|
55
|
-
"@blocklet/resolver": "1.16.
|
|
56
|
-
"@blocklet/store": "1.16.
|
|
53
|
+
"@blocklet/images": "1.16.44-beta-20250512-155818-937e465d",
|
|
54
|
+
"@blocklet/meta": "1.16.44-beta-20250512-155818-937e465d",
|
|
55
|
+
"@blocklet/resolver": "1.16.44-beta-20250512-155818-937e465d",
|
|
56
|
+
"@blocklet/store": "1.16.44-beta-20250512-155818-937e465d",
|
|
57
57
|
"@blocklet/theme-builder": "^0.1.15",
|
|
58
58
|
"@ocap/client": "1.20.8",
|
|
59
59
|
"@ocap/mcrypto": "1.20.8",
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"engines": {
|
|
153
153
|
"node": ">=14"
|
|
154
154
|
},
|
|
155
|
-
"gitHead": "
|
|
155
|
+
"gitHead": "562fc0ac82df09c8fc50f27811565de331bda84d",
|
|
156
156
|
"devDependencies": {
|
|
157
157
|
"@types/fs-extra": "^11.0.4",
|
|
158
158
|
"@types/jest": "^29.5.13"
|