@botim/botim-cli 0.0.8 → 0.0.9
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/cli.js +1 -1
- package/dist/cli.mjs +2 -2
- package/package.json +2 -3
package/dist/cli.js
CHANGED
|
@@ -52,7 +52,7 @@ async function promptSelect(options) {
|
|
|
52
52
|
process.stdin.removeListener("keypress", onKeypress);
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
|
-
const version = "0.0.
|
|
55
|
+
const version = "0.0.9";
|
|
56
56
|
const program = new Command();
|
|
57
57
|
program.name("botim-cli").description("CLI tool to generate boilerplate code for React and Vue applications").version(version, "-v, --version", "Output the current version").option("--env <environment>", "Target environment: prod, uat, or beta (overrides default)", (value) => {
|
|
58
58
|
const env = parseEnvironment(value);
|