From 8db2308ae3645566e30696f6c96e7c468a9c9fbb Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Thu, 21 Sep 2023 13:21:33 -0600 Subject: [PATCH] fix: revert message --- src/commands/core-v2.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/core-v2.ts b/src/commands/core-v2.ts index 124d7e3..95f4daa 100644 --- a/src/commands/core-v2.ts +++ b/src/commands/core-v2.ts @@ -30,7 +30,7 @@ export default class CoreV2 extends Command { async run(): Promise { const {args, flags} = await this.parse(CoreV2) - this.log(`hello I am a CJS plugin from ${this.config.root}!`) + this.log(`hello I am an @oclif/core@v2 plugin from ${this.config.root}!`) return {args, flags} } }