- /*
- |--------------------------------------------------------------------------
- | Ace Commands
- |--------------------------------------------------------------------------
- |
- | This file is the entry point for running ace commands.
- |
- */
- require('reflect-metadata')
- require('source-map-support').install({ handleUncaughtExceptions: false })
- const { Ignitor } = require('@adonisjs/core/build/standalone')
- new Ignitor(__dirname)
- .ace()
- .handle(process.argv.slice(2))
|