Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/head stream error types #7000

Merged
merged 4 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion packages/plugin-stream-error/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,10 @@

### Patch Change

- feat: plugin export head stream error recover component
- 2928447c: plugin export head stream error recover component

## 1.0.2

### Patch Change

- 069579a3: add head stream error types exports
9 changes: 8 additions & 1 deletion packages/plugin-stream-error/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ice/plugin-stream-error",
"version": "1.0.1",
"version": "1.0.2",
"description": "",
"license": "MIT",
"type": "module",
Expand All @@ -12,6 +12,13 @@
},
"./head-stream-error": "./esm/components/headStreamErrorRecoverScript.js"
},
"typesVersions": {
"*": {
"head-stream-error": [
"./esm/components/headStreamErrorRecoverScript.d.ts"
]
}
},
wjn760371 marked this conversation as resolved.
Show resolved Hide resolved
"main": "./esm/index.js",
"types": "./esm/index.d.ts",
"files": [
Expand Down
Loading