Skip to content

Commit

Permalink
fix(solid): export clipboard
Browse files Browse the repository at this point in the history
  • Loading branch information
cschroeter committed Feb 16, 2024
1 parent 8280dd9 commit 1b12e62
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 36 deletions.
4 changes: 4 additions & 0 deletions packages/frameworks/solid/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ description: All notable changes to this project will be documented in this file

## [Unreleased]

### Fixed

- Resolved an issue where the `Clipboard` component was not exported correctly.

## [2.1.0] - 2024-02-14

### Added
Expand Down
35 changes: 0 additions & 35 deletions packages/frameworks/solid/src/index.ts

This file was deleted.

2 changes: 2 additions & 0 deletions packages/frameworks/solid/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export * from './accordion'
export * from './avatar'
export * from './carousel'
export * from './checkbox'
export * from './clipboard'
export * from './color-picker'
export * from './combobox'
export * from './date-picker'
Expand All @@ -11,6 +12,7 @@ export * from './environment'
export * from './factory'
export * from './file-upload'
export * from './hover-card'
export * from './locale'
export * from './menu'
export * from './number-input'
export * from './pagination'
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/src/prepare-release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import path, { dirname } from 'path'
import { match } from 'ts-pattern'

const generateExports = (dirName: string) => {
const paths = globbySync('src/**/index.ts')
const paths = globbySync('src/**/index.ts{x}')
const exports: Record<string, unknown> = {}

for (const p of paths) {
Expand Down

0 comments on commit 1b12e62

Please sign in to comment.