create-unibest 3.2.0 → 3.2.1
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/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -612,7 +612,7 @@ async function generateProject(options) {
|
|
|
612
612
|
}
|
|
613
613
|
|
|
614
614
|
// package.json
|
|
615
|
-
var version = "3.2.
|
|
615
|
+
var version = "3.2.1";
|
|
616
616
|
var package_default = {
|
|
617
617
|
name: "create-unibest",
|
|
618
618
|
type: "module",
|
|
@@ -800,6 +800,10 @@ function main() {
|
|
|
800
800
|
printVersion();
|
|
801
801
|
return;
|
|
802
802
|
}
|
|
803
|
+
if (args.h || args.help) {
|
|
804
|
+
printHelp();
|
|
805
|
+
return;
|
|
806
|
+
}
|
|
803
807
|
switch (command) {
|
|
804
808
|
case "create":
|
|
805
809
|
case "new":
|