From c74cacab05cc8d135e56537ac28362249b156ee5 Mon Sep 17 00:00:00 2001 From: Harminder virk Date: Mon, 2 Dec 2019 09:22:16 +0530 Subject: [PATCH] feat: generate manifest after invoking package instructions --- commands/Invoke.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commands/Invoke.ts b/commands/Invoke.ts index 67ebb5b..54e1711 100644 --- a/commands/Invoke.ts +++ b/commands/Invoke.ts @@ -8,6 +8,8 @@ */ import { BaseCommand, args } from '@adonisjs/ace' + +import { Manifest } from '../src/Manifest' import { ADONIS_ACE_CWD } from '../config/env' /** @@ -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() } }