Skip to content

Commit

Permalink
feat: generate manifest after invoking package instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Dec 2, 2019
1 parent fec8187 commit c74caca
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions commands/Invoke.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
*/

import { BaseCommand, args } from '@adonisjs/ace'

import { Manifest } from '../src/Manifest'
import { ADONIS_ACE_CWD } from '../config/env'

/**
Expand Down Expand Up @@ -42,5 +44,6 @@ export default class Invoke extends BaseCommand {

const { executeInstructions } = await import('@adonisjs/sink')
await executeInstructions(this.name, cwd, this.application)
await new Manifest(cwd, this.logger).generate()
}
}

0 comments on commit c74caca

Please sign in to comment.