Skip to content

Commit

Permalink
fix(shared): invalid export of interface (#102)
Browse files Browse the repository at this point in the history
* fix(shared): invalid export of interface

* chore: add changeset
  • Loading branch information
kripod authored Nov 12, 2024
1 parent 81bcb65 commit 6bd612a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/dry-cobras-check.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wyw-in-js/shared": patch
---

fix(shared): invalid export of interface
2 changes: 1 addition & 1 deletion packages/shared/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ export { asyncResolveFallback, syncResolve } from './asyncResolveFallback';
export { hasEvalMeta } from './hasEvalMeta';
export { findPackageJSON } from './findPackageJSON';
export { isBoxedPrimitive } from './isBoxedPrimitive';
export { IVariableContext } from './IVariableContext';
export { enableDebug, logger } from './logger';
export { isFeatureEnabled } from './options/isFeatureEnabled';
export { slugify } from './slugify';
export { ValueType } from './types';

export type { IVariableContext } from './IVariableContext';
export type {
ClassNameSlugVars,
ClassNameFn,
Expand Down

0 comments on commit 6bd612a

Please sign in to comment.