@athenna/core
Advanced tools
Comparing version 4.31.0 to 4.32.0
{ | ||
"name": "@athenna/core", | ||
"version": "4.31.0", | ||
"version": "4.32.0", | ||
"description": "One foundation for multiple applications.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -36,2 +36,4 @@ /** | ||
}); | ||
console.log(); | ||
this.logger.success(`Successfully installed ${this.libraries.join(', ')} libraries`); | ||
for (const library of this.libraries) { | ||
@@ -42,9 +44,6 @@ const path = Path.nodeModules(`${library}/configurer/index.js`); | ||
} | ||
task.addPromise(`Configuring ${library}`, async () => { | ||
const Configurer = await Module.getFrom(path); | ||
return new Configurer().setPath(path).configure(); | ||
}); | ||
this.logger.simple(`\n({bold,green} [ CONFIGURING ${library} ])\n`); | ||
const Configurer = await Module.getFrom(path); | ||
await new Configurer().setPath(path).configure(); | ||
} | ||
await task.run(); | ||
this.logger.success(`Successfully installed ${this.libraries.join(', ')} libraries`); | ||
} | ||
@@ -54,3 +53,3 @@ } | ||
Argument({ | ||
signature: '<...libraries>', | ||
signature: 'libraries...', | ||
description: 'The libraries to install in your project.' | ||
@@ -57,0 +56,0 @@ }), |
113823
3020