From 36c5def5a6068fec65e6d9753d3d4ad1957bcb55 Mon Sep 17 00:00:00 2001 From: p-sw Date: Thu, 6 Jun 2024 23:55:43 +0900 Subject: [PATCH] feat(cli): add shared field to Registry interface A new field "shared" has been added to the Registry interface within the const.ts file located in the cli package. This extends the existing interface to hold more diverse data. --- packages/cli/src/const.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cli/src/const.ts b/packages/cli/src/const.ts index 241225e..1503714 100644 --- a/packages/cli/src/const.ts +++ b/packages/cli/src/const.ts @@ -5,6 +5,7 @@ export const CONFIG_DEFAULT_PATH = 'pswui.config.js' export interface Registry { base: string + shared: string components: Record }