@blocklet/cli 1.16.20-beta-e32e39d7 → 1.16.21-beta-46c675eb
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 +3 -23
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -28,27 +28,8 @@ Powered By
|
|
|
28
28
|
/ ___ \| | | (__| |_) | | (_) | (__| <
|
|
29
29
|
/_/ \_\_| \___|____/|_|\___/ \___|_|\_\
|
|
30
30
|
|
|
31
|
-
Blocklet CLI v1.16.
|
|
31
|
+
Blocklet CLI v1.16.20
|
|
32
32
|
|
|
33
|
-
Usage: blocklet server [options] [command]
|
|
34
|
-
|
|
35
|
-
Options:
|
|
36
|
-
-V, --version output the version number
|
|
37
|
-
-c --config [node-config] Blocklet Server configuration file
|
|
38
|
-
-y --yes Automatic yes to prompts (default: false)
|
|
39
|
-
(default: false)
|
|
40
|
-
-h, --help display help for command
|
|
41
|
-
|
|
42
|
-
Commands:
|
|
43
|
-
start [options] Start Blocklet Server
|
|
44
|
-
init [options] Init Blocklet Server config
|
|
45
|
-
status Show Blocklet Server and blocklet status
|
|
46
|
-
logs Show Blocklet Server and blocklet log files
|
|
47
|
-
stop [options] Stop Blocklet Server and blocklets
|
|
48
|
-
info [options] Get environment information for debugging and
|
|
49
|
-
issue reporting
|
|
50
|
-
upgrade Self-Upgrade Blocklet Server
|
|
51
|
-
help [command] display help for command
|
|
52
33
|
|
|
53
34
|
None of the above command seems help? Consider command line utility blocklet.
|
|
54
35
|
```
|
|
@@ -75,9 +56,8 @@ Commands:
|
|
|
75
56
|
version [options] [newVersion] Bump blocklet version and persist to disk
|
|
76
57
|
upload [options] [metafile] Upload the blocklet to blocklet store
|
|
77
58
|
exec [options] <script> Execute script in blocklet running context
|
|
78
|
-
connect [options] <store-url> Connect to blocklet store. This command
|
|
79
|
-
|
|
80
|
-
config"
|
|
59
|
+
connect [options] <store-url> Connect to blocklet store. This command will
|
|
60
|
+
set store configuration by "blocklet config"
|
|
81
61
|
create [options] [name] Bootstrap a brand new blocklet from various
|
|
82
62
|
starter templates within minutes
|
|
83
63
|
add [options] <component> Add component to blocklet.yml
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/cli",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.21-beta-46c675eb",
|
|
4
4
|
"description": "Command line tools to manage Blocklet and Blocklet Server",
|
|
5
5
|
"homepage": "https://github.com/ArcBlock/blocklet-server#readme",
|
|
6
6
|
"main": "bin/blocklet.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"url": "https://github.com/ArcBlock/blocklet-server/issues"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@abtnode/cli": "1.16.
|
|
39
|
+
"@abtnode/cli": "1.16.21-beta-46c675eb",
|
|
40
40
|
"colors": "1.4.0",
|
|
41
41
|
"cross-spawn": "^7.0.3",
|
|
42
42
|
"shelljs": "^0.8.5"
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=14"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "a852c7930e8bc84c641579d8e4c009accf478078"
|
|
60
60
|
}
|