From 6fb8547f080b92a00695e31ec25e32756b221794 Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Thu, 27 Jun 2024 01:59:44 -0700 Subject: [PATCH] chore(root): plugin template fixes --- plop-templates/plugin/src/index.ts | 2 +- plop-templates/plugin/src/log.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plop-templates/plugin/src/index.ts b/plop-templates/plugin/src/index.ts index 3dd0c785..7a884195 100644 --- a/plop-templates/plugin/src/index.ts +++ b/plop-templates/plugin/src/index.ts @@ -1,4 +1,4 @@ -import { PocketHostPlugin } from 'pockethost/core' +import { PocketHostPlugin } from 'pockethost' import { PLUGIN_NAME } from './constants' import { dbg } from './log' diff --git a/plop-templates/plugin/src/log.ts b/plop-templates/plugin/src/log.ts index e7c80336..547435b2 100644 --- a/plop-templates/plugin/src/log.ts +++ b/plop-templates/plugin/src/log.ts @@ -1,4 +1,4 @@ -import { LoggerService } from 'pockethost/core' +import { LoggerService } from 'pockethost' const logger = LoggerService().create('plugin-{{dashCase name}}') export const { dbg, info } = logger