aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/start/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal-server/start/app.js')
-rw-r--r--src/internal-server/start/app.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/internal-server/start/app.js b/src/internal-server/start/app.js
index 8b1a49f57..7ca544085 100644
--- a/src/internal-server/start/app.js
+++ b/src/internal-server/start/app.js
@@ -28,9 +28,7 @@ const providers = [
28| Providers for migrations, tests etc. 28| Providers for migrations, tests etc.
29| 29|
30*/ 30*/
31const aceProviders = [ 31const aceProviders = ['@adonisjs/lucid/providers/MigrationsProvider'];
32 '@adonisjs/lucid/providers/MigrationsProvider',
33];
34 32
35/* 33/*
36|-------------------------------------------------------------------------- 34|--------------------------------------------------------------------------
@@ -57,5 +55,8 @@ const aliases = {};
57const commands = []; 55const commands = [];
58 56
59module.exports = { 57module.exports = {
60 providers, aceProviders, aliases, commands, 58 providers,
59 aceProviders,
60 aliases,
61 commands,
61}; 62};