appiq-solution 1.6.1 → 1.6.2
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
@@ -33,12 +33,12 @@ try {
|
|
33
33
|
|
34
34
|
program
|
35
35
|
.version(version)
|
36
|
-
.description('
|
36
|
+
.description('Appiq-Solution installer - Flutter Mobile Development Extension\nBased on and credits go to BMAD Method');
|
37
37
|
|
38
38
|
program
|
39
39
|
.command('install')
|
40
|
-
.description('Install
|
41
|
-
.option('-f, --full', 'Install complete
|
40
|
+
.description('Install Appiq-Solution Flutter agents and tools')
|
41
|
+
.option('-f, --full', 'Install complete Appiq-Solution')
|
42
42
|
.option('-x, --expansion-only', 'Install only expansion packs (no bmad-core)')
|
43
43
|
.option('-d, --directory <path>', 'Installation directory')
|
44
44
|
.option('-i, --ide <ide...>', 'Configure for specific IDE(s) - can specify multiple (cursor, claude-code, windsurf, trae, roo, cline, gemini, github-copilot, other)')
|
@@ -136,8 +136,9 @@ async function promptInstallation() {
|
|
136
136
|
╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝
|
137
137
|
`));
|
138
138
|
|
139
|
-
|
140
|
-
|
139
|
+
console.log(chalk.bold.magenta('🚀 Appiq-Solution - Flutter Mobile Development Extension'));
|
140
|
+
console.log(chalk.gray(' Based on and credits go to BMAD Method'));
|
141
|
+
console.log(chalk.bold.blue(`✨ Appiq-Solution Installer v${version}\n`));
|
141
142
|
|
142
143
|
const answers = {};
|
143
144
|
|
@@ -146,7 +147,7 @@ async function promptInstallation() {
|
|
146
147
|
{
|
147
148
|
type: 'input',
|
148
149
|
name: 'directory',
|
149
|
-
message: 'Enter the full path to your project directory where
|
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
151
|
validate: (input) => {
|
151
152
|
if (!input.trim()) {
|
152
153
|
return 'Please enter a valid project path';
|