Skip to content

Commit 390e8cf

Browse files
committed
feat(@hanzo/ui): add billing module to dist build
Add billing/index tsup entry so @hanzo/ui/billing resolves from npm. Update package.json export to point to dist instead of source. Bumps to v5.3.41.
1 parent fd9b89b commit 390e8cf

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

pkg/ui/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hanzo/ui",
3-
"version": "5.3.40",
3+
"version": "5.3.41",
44
"description": "Multi-framework UI library with React, Vue, Svelte, and React Native support. Based on shadcn/ui with comprehensive framework coverage.",
55
"publishConfig": {
66
"registry": "https://registry.npmjs.org/",
@@ -279,8 +279,9 @@
279279
"require": "./dist/drawer.js"
280280
},
281281
"./billing": {
282-
"types": "./src/billing/index.ts",
283-
"import": "./src/billing/index.ts"
282+
"types": "./dist/billing/index.d.ts",
283+
"import": "./dist/billing/index.mjs",
284+
"require": "./dist/billing/index.js"
284285
},
285286
"./finance": {
286287
"types": "./dist/finance/index.d.ts",

pkg/ui/tsup.config.minimal.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@ export default defineConfig({
180180
'project/kanban': 'src/project/kanban.tsx',
181181
'project/list': 'src/project/list.tsx',
182182

183+
// Billing components
184+
'billing/index': 'src/billing/index.ts',
185+
183186
// Model components (Zen model cards, tables, library, ZenEnso logo)
184187
'models/index': 'src/models/index.ts',
185188

0 commit comments

Comments
 (0)