diff --git a/packages/centra-types/index.d.ts b/packages/centra-types/index.d.ts index ec10836e..2207c21c 100644 --- a/packages/centra-types/index.d.ts +++ b/packages/centra-types/index.d.ts @@ -1,2 +1,3 @@ export * from './api' export * from './models' +export * from './utils' diff --git a/packages/centra-types/package.json b/packages/centra-types/package.json index 0207c96d..b7b99919 100644 --- a/packages/centra-types/package.json +++ b/packages/centra-types/package.json @@ -20,7 +20,7 @@ "url": "https://github.com/noaignite/accelerator/issues" }, "scripts": { - "build": "mkdir build && cp index.d.ts build/ && cp -a api/ build/api/ && cp -a models/ build/models/ && yarn build:copy-files", + "build": "mkdir build && cp index.d.ts build/ && cp -a api/ build/api/ && cp -a models/ build/models/ && cp -a utils/ build/utils/ && yarn build:copy-files", "build:copy-files": "node ../../scripts/copy-files.mjs", "build:docs": "typedoc", "prebuild": "yarn typecheck && rimraf build",