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