Skip to content

Commit

Permalink
fix: correctly include types (#1076)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonom authored Oct 25, 2024
1 parent 3090abb commit 6988830
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 7 deletions.
6 changes: 6 additions & 0 deletions packages/react-markdown/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @assistant-ui/react-markdown

## 0.2.24

### Patch Changes

- fix: correctly include types

## 0.2.23

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-markdown/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@assistant-ui/react-markdown",
"version": "0.2.23",
"version": "0.2.24",
"license": "MIT",
"exports": {
".": {
Expand Down
5 changes: 3 additions & 2 deletions packages/react-markdown/tsconfig.declarations.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"declarationDir": "./dist",
"declarationMap": true,
"emitDeclarationOnly": true,
"noEmit": false
"noEmit": false,
"paths": null
},
"include": ["src"]
"include": ["./src"]
}
8 changes: 8 additions & 0 deletions packages/react-trieve/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @assistant-ui/react-trieve

## 0.0.7

### Patch Changes

- fix: correctly include types
- Updated dependencies
- @assistant-ui/react-markdown@0.2.24

## 0.0.6

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react-trieve/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@assistant-ui/react-trieve",
"version": "0.0.6",
"version": "0.0.7",
"license": "MIT",
"exports": {
".": {
Expand Down Expand Up @@ -46,7 +46,7 @@
},
"peerDependencies": {
"@assistant-ui/react": "^0.5.93",
"@assistant-ui/react-markdown": "^0.2.23",
"@assistant-ui/react-markdown": "^0.2.24",
"trieve-ts-sdk": "^0.0.13",
"@types/react": "*",
"react": "^18 || ^19",
Expand Down
3 changes: 2 additions & 1 deletion packages/react-trieve/tsconfig.declarations.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"declarationDir": "./dist",
"declarationMap": true,
"emitDeclarationOnly": true,
"noEmit": false
"noEmit": false,
"paths": null
},
"include": ["src"]
}
3 changes: 2 additions & 1 deletion packages/react/tsconfig.declarations.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"declarationDir": "./dist",
"declarationMap": true,
"emitDeclarationOnly": true,
"noEmit": false
"noEmit": false,
"paths": null
},
"include": ["src"]
}

0 comments on commit 6988830

Please sign in to comment.