appiq-solution 1.6.2 → 1.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appiq-solution",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "description": "APPIQ SOLUTION: Flutter Mobile Development Extension for BMAD Method",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -128,12 +128,12 @@ async function promptInstallation() {
128
128
 
129
129
  // Display ASCII logo
130
130
  console.log(chalk.bold.cyan(`
131
- ██████╗ ███╗ ███╗ █████╗ ██████╗ ███╗ ███╗███████╗████████╗██╗ ██╗ ██████╗ ██████╗
132
- ██╔══██╗████╗ ████║██╔══██╗██╔══██╗ ████╗ ████║██╔════╝╚══██╔══╝██║ ██║██╔═══██╗██╔══██╗
133
- ██████╔╝██╔████╔██║███████║██║ ██║█████╗██╔████╔██║█████╗ ██║ ███████║██║ ██║██║ ██║
134
- ██╔══██╗██║╚██╔╝██║██╔══██║██║ ██║╚════╝██║╚██╔╝██║██╔══╝ ██║ ██╔══██║██║ ██║██║ ██║
135
- ██████╔╝██║ ╚═╝ ██║██║ ██║██████╔╝ ██║ ╚═╝ ██║███████╗ ██║ ██║ ██║╚██████╔╝██████╔╝
136
- ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝
131
+ █████╗ ██████╗ ██████╗ ██╗ ██████╗ ███████╗ ██████╗ ██╗ ██╗ ██╗████████╗██╗ ██████╗ ███╗ ██╗
132
+ ██╔══██╗██╔══██╗██╔══██╗██║██╔═══██╗ ██╔════╝██╔═══██╗██║ ██║ ██║╚══██╔══╝██║██╔═══██╗████╗ ██║
133
+ ███████║██████╔╝██████╔╝██║██║ ██║█████╗███████╗██║ ██║██║ ██║ ██║ ██║ ██║██║ ██║██╔██╗ ██║
134
+ ██╔══██║██╔═══╝ ██╔═══╝ ██║██║▄▄ ██║╚════╝╚════██║██║ ██║██║ ██║ ██║ ██║ ██║██║ ██║██║╚██╗██║
135
+ ██║ ██║██║ ██║ ██║╚██████╔╝ ███████║╚██████╔╝███████╗╚██████╔╝ ██║ ██║╚██████╔╝██║ ╚████║
136
+ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚══▀▀═╝ ╚══════╝ ╚═════╝ ╚══════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝
137
137
  `));
138
138
 
139
139
  console.log(chalk.bold.magenta('🚀 Appiq-Solution - Flutter Mobile Development Extension'));
@@ -147,11 +147,9 @@ async function promptInstallation() {
147
147
  {
148
148
  type: 'input',
149
149
  name: 'directory',
150
- message: 'Enter the full path to your project directory where Appiq-Solution should be installed (leave empty to install in the current folder):'
150
+ message: 'Enter the full path to your project directory where Appiq-Solution should be installed (leave empty to install in the current folder):',
151
151
  validate: (input) => {
152
- if (!input.trim()) {
153
- return 'Please enter a valid project path';
154
- }
152
+ // Allow empty input for current folder
155
153
  return true;
156
154
  }
157
155
  }