Skip to content

Commit a63615e

Browse files
committed
fix(entraid): correct package entry point structure
Add root index.ts to properly expose package exports through `@redis/entraid` rather than requiring users to import through `@redis/entraid/dist/lib`. This maintains backward compatibility while providing the correct package structure where all exports are available from the package root. - Add /index.ts that re-exports all from /lib/index.ts - Preserve existing /lib/index.ts structure
1 parent aa4ea33 commit a63615e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/entraid/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './lib/index'

0 commit comments

Comments
 (0)