@axium/server 0.6.3 → 0.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/dist/cli.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -189,7 +189,6 @@ program
|
|
|
189
189
|
catch {
|
|
190
190
|
output.error('Unavailable');
|
|
191
191
|
}
|
|
192
|
-
await db.database.destroy();
|
|
193
192
|
console.log(styleText('whiteBright', 'Credentials authentication:'), config.auth.credentials ? styleText('yellow', 'enabled') : 'disabled');
|
|
194
193
|
console.log(styleText('whiteBright', 'Loaded plugins:'), Array.from(plugins)
|
|
195
194
|
.map(plugin => plugin.id)
|
|
@@ -200,6 +199,7 @@ program
|
|
|
200
199
|
console.log(styleText('bold', plugin.name + ':'));
|
|
201
200
|
console.log(await plugin.statusText());
|
|
202
201
|
}
|
|
202
|
+
await db.database.destroy();
|
|
203
203
|
});
|
|
204
204
|
program
|
|
205
205
|
.command('ports')
|