@botim/botim-cli 0.1.4 → 0.1.7
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 +3 -3
- package/dist/cli.mjs +2 -2
- package/dist/templates/react/.botim/app.json5 +12 -0
- package/dist/templates/react/.botim/ci/post-version.sh +7 -0
- package/dist/templates/react/.cursorrules +37 -0
- package/dist/templates/react/scripts/.gitkeep +0 -0
- package/dist/templates/react/src/assets/animation/.gitkeep +0 -0
- package/dist/templates/react/src/assets/fonts/.gitkeep +0 -0
- package/dist/templates/react/src/assets/images/.gitkeep +0 -0
- package/dist/templates/templates/react/.botim/app.json5 +12 -0
- package/dist/templates/templates/react/.botim/ci/post-version.sh +7 -0
- package/dist/templates/templates/react/.cursorrules +37 -0
- package/dist/templates/templates/react/scripts/.gitkeep +0 -0
- package/dist/templates/templates/react/src/assets/animation/.gitkeep +0 -0
- package/dist/templates/templates/react/src/assets/fonts/.gitkeep +0 -0
- package/dist/templates/templates/react/src/assets/images/.gitkeep +0 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -45,7 +45,7 @@ async function promptSelect(options) {
|
|
|
45
45
|
process.stdin.removeListener("keypress", onKeypress);
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
|
-
const version = "0.1.
|
|
48
|
+
const version = "0.1.7";
|
|
49
49
|
let updateInfo = null;
|
|
50
50
|
function displayUpdateBanner(info) {
|
|
51
51
|
if (!info.updateAvailable) return;
|
|
@@ -658,8 +658,8 @@ configCommand.command("list").description("List all configuration values").actio
|
|
|
658
658
|
console.log(chalk.yellow("\u26A0\uFE0F No template repository URLs are configured.\n"));
|
|
659
659
|
console.log(chalk.gray("Built-in defaults are included in the project, but you can override them.\n"));
|
|
660
660
|
console.log(chalk.gray("To override defaults, create a .env file in your project root or ~/.botim-cli/.env with:\n"));
|
|
661
|
-
console.log(chalk.gray(" BOTIM_TEMPLATE_REACT_URL=
|
|
662
|
-
console.log(chalk.gray(" BOTIM_TEMPLATE_VUE_URL=
|
|
661
|
+
console.log(chalk.gray(" BOTIM_TEMPLATE_REACT_URL=https://github.com/botim-mp/botim-mp.git\n"));
|
|
662
|
+
console.log(chalk.gray(" BOTIM_TEMPLATE_VUE_URL=https://github.com/botim-mp/botim-mp.git\n"));
|
|
663
663
|
console.log(chalk.gray(" BOTIM_TEMPLATE_BRANCH=main (optional, default: main)\n"));
|
|
664
664
|
console.log(chalk.gray("\nOr set environment variables directly:\n"));
|
|
665
665
|
console.log(chalk.gray(" export BOTIM_TEMPLATE_REACT_URL=...\n"));
|