@appshell/cli 0.3.0-alpha.4 → 0.3.0-alpha.5
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 -5
- package/dist/main.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ appshell generate [target]
|
|
|
54
54
|
Generates a resource
|
|
55
55
|
|
|
56
56
|
Commands:
|
|
57
|
-
appshell generate manifest Generate the appshell manifest by processing the template specified by --
|
|
57
|
+
appshell generate manifest Generate the appshell manifest by processing the template specified by --template
|
|
58
58
|
appshell generate env Generate the runtime environment js file that reflects the current process.env
|
|
59
59
|
appshell generate index Generate the appshell index file by merging sources specifed by --registry options
|
|
60
60
|
appshell generate metadata Generate the appshell metadata file by merging sources specifed by --registry options
|
|
@@ -72,16 +72,15 @@ Generate the appshell global runtime manifest
|
|
|
72
72
|
Options:
|
|
73
73
|
--help Show help [boolean]
|
|
74
74
|
--version Show version number [boolean]
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-o, --outDir Output location for the appshell manifest [string] [default: "."]
|
|
75
|
+
-t, --template Path to the appshell manifest template to process [string] [default: "appshell.config.json"]
|
|
76
|
+
-o, --outDir Output location for the appshell manifest [string] [default: "dist"]
|
|
78
77
|
-f, --outFile Output filename for the appshell manifest [string] [default: "appshell.manifest.json"]
|
|
79
78
|
```
|
|
80
79
|
|
|
81
80
|
### Sample usage
|
|
82
81
|
|
|
83
82
|
```bash
|
|
84
|
-
appshell generate manifest --
|
|
83
|
+
appshell generate manifest --template dist/appshell.config.json
|
|
85
84
|
```
|
|
86
85
|
|
|
87
86
|
**Where does the content of CONFIGS_DIR come from?**
|