appiq-solution 1.3.1 → 1.3.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.
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "appiq-solution",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.2",
|
4
4
|
"description": "🚀 APPIQ SOLUTION: Flutter Mobile Development Extension - Eine spezialisierte Erweiterung der BMAD Method für Flutter Mobile App Entwicklung",
|
5
5
|
"main": "tools/cli.js",
|
6
6
|
"bin": {
|
@@ -33,7 +33,20 @@ try {
|
|
33
33
|
|
34
34
|
program
|
35
35
|
.version(version)
|
36
|
-
.description('BMad Method installer - Universal AI agent framework for any domain')
|
36
|
+
.description('BMad Method installer - Universal AI agent framework for any domain')
|
37
|
+
.action(async () => {
|
38
|
+
// Default action when no command is provided - start interactive installation
|
39
|
+
try {
|
40
|
+
const answers = await promptInstallation();
|
41
|
+
if (!answers._alreadyInstalled) {
|
42
|
+
await installer.install(answers);
|
43
|
+
process.exit(0);
|
44
|
+
}
|
45
|
+
} catch (error) {
|
46
|
+
console.error(chalk.red('Installation failed:'), error.message);
|
47
|
+
process.exit(1);
|
48
|
+
}
|
49
|
+
});
|
37
50
|
|
38
51
|
program
|
39
52
|
.command('install')
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "appiq-solution",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.2",
|
4
4
|
"description": "🚀 APPIQ SOLUTION: Flutter Mobile Development Extension - Eine spezialisierte Erweiterung der BMAD Method für Flutter Mobile App Entwicklung",
|
5
5
|
"main": "tools/cli.js",
|
6
6
|
"bin": {
|
@@ -46,7 +46,7 @@
|
|
46
46
|
},
|
47
47
|
"keywords": [
|
48
48
|
"ai-agents",
|
49
|
-
"development-workflow",
|
49
|
+
"development-workflow",
|
50
50
|
"project-management",
|
51
51
|
"flutter",
|
52
52
|
"mobile-development",
|
@@ -70,7 +70,7 @@
|
|
70
70
|
"author": "Brian (BMad) Madison",
|
71
71
|
"license": "MIT",
|
72
72
|
"repository": {
|
73
|
-
"type": "git",
|
73
|
+
"type": "git",
|
74
74
|
"url": "git+https://github.com/Viktor-Hermann/APPIQ-METHOD.git"
|
75
75
|
},
|
76
76
|
"engines": {
|
@@ -90,4 +90,4 @@
|
|
90
90
|
"prettier --write"
|
91
91
|
]
|
92
92
|
}
|
93
|
-
}
|
93
|
+
}
|
@@ -33,7 +33,20 @@ try {
|
|
33
33
|
|
34
34
|
program
|
35
35
|
.version(version)
|
36
|
-
.description('BMad Method installer - Universal AI agent framework for any domain')
|
36
|
+
.description('BMad Method installer - Universal AI agent framework for any domain')
|
37
|
+
.action(async () => {
|
38
|
+
// Default action when no command is provided - start interactive installation
|
39
|
+
try {
|
40
|
+
const answers = await promptInstallation();
|
41
|
+
if (!answers._alreadyInstalled) {
|
42
|
+
await installer.install(answers);
|
43
|
+
process.exit(0);
|
44
|
+
}
|
45
|
+
} catch (error) {
|
46
|
+
console.error(chalk.red('Installation failed:'), error.message);
|
47
|
+
process.exit(1);
|
48
|
+
}
|
49
|
+
});
|
37
50
|
|
38
51
|
program
|
39
52
|
.command('install')
|