ace 467 B

12345678910111213141516
  1. /*
  2. |--------------------------------------------------------------------------
  3. | Ace Commands
  4. |--------------------------------------------------------------------------
  5. |
  6. | This file is the entry point for running ace commands.
  7. |
  8. */
  9. require('reflect-metadata')
  10. require('source-map-support').install({ handleUncaughtExceptions: false })
  11. const { Ignitor } = require('@adonisjs/core/build/standalone')
  12. new Ignitor(__dirname)
  13. .ace()
  14. .handle(process.argv.slice(2))