@appshell/cli 0.3.0-alpha.2 → 0.3.0-alpha.4
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 +15 -7
- package/dist/main.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -37,19 +37,27 @@ pnpm add -D @appshell/cli
|
|
|
37
37
|
|
|
38
38
|
## Usage
|
|
39
39
|
|
|
40
|
+
```bash
|
|
41
|
+
appshell [command]
|
|
42
|
+
|
|
43
|
+
Commands:
|
|
44
|
+
appshell generate [target] Generates a resource
|
|
45
|
+
appshell register Register one or more appshell manifests
|
|
46
|
+
appshell start Start the appshell runtime environment
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### appshell generate
|
|
50
|
+
|
|
40
51
|
```bash
|
|
41
52
|
appshell generate [target]
|
|
42
53
|
|
|
43
54
|
Generates a resource
|
|
44
55
|
|
|
45
56
|
Commands:
|
|
46
|
-
appshell generate manifest Generate the appshell manifest
|
|
47
|
-
appshell generate env Generate the runtime environment js file that
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
Options:
|
|
51
|
-
--help Show help [boolean]
|
|
52
|
-
--version Show version number [boolean]
|
|
57
|
+
appshell generate manifest Generate the appshell manifest by processing the template specified by --config
|
|
58
|
+
appshell generate env Generate the runtime environment js file that reflects the current process.env
|
|
59
|
+
appshell generate index Generate the appshell index file by merging sources specifed by --registry options
|
|
60
|
+
appshell generate metadata Generate the appshell metadata file by merging sources specifed by --registry options
|
|
53
61
|
```
|
|
54
62
|
|
|
55
63
|
## Generate manifest
|