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

Add missing tslib dependencies #1264

Merged
merged 1 commit into from
Oct 30, 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
5 changes: 4 additions & 1 deletion typescript/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mcap/browser",
"version": "1.0.0",
"version": "1.0.1",
"description": "Support library for using MCAP in the browser",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -53,5 +53,8 @@
"prettier": "3.1.0",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
},
"dependencies": {
"tslib": "^2.5.0"
}
}
5 changes: 4 additions & 1 deletion typescript/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mcap/nodejs",
"version": "1.0.1",
"version": "1.0.2",
"description": "Support library for using MCAP in Node.js",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -54,5 +54,8 @@
"prettier": "3.1.0",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
},
"dependencies": {
"tslib": "^2.5.0"
}
}
5 changes: 3 additions & 2 deletions typescript/support/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mcap/support",
"version": "1.0.1",
"version": "1.0.2",
"description": "Common decompression for use with MCAP files",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -57,6 +57,7 @@
"@foxglove/wasm-bz2": "^0.1.1",
"@foxglove/wasm-lz4": "^1.0.2",
"@foxglove/wasm-zstd": "^1.0.1",
"protobufjs": "^7.2.5"
"protobufjs": "^7.2.5",
"tslib": "^2.5.0"
}
}
3 changes: 3 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3511,6 +3511,7 @@ __metadata:
jest: 29.7.0
prettier: 3.1.0
ts-jest: 29.1.1
tslib: ^2.5.0
typescript: 5.2.2
languageName: unknown
linkType: soft
Expand Down Expand Up @@ -3567,6 +3568,7 @@ __metadata:
jest: 29.7.0
prettier: 3.1.0
ts-jest: 29.1.1
tslib: ^2.5.0
typescript: 5.2.2
languageName: unknown
linkType: soft
Expand Down Expand Up @@ -3596,6 +3598,7 @@ __metadata:
prettier: 3.1.0
protobufjs: ^7.2.5
ts-jest: 29.1.1
tslib: ^2.5.0
typescript: 5.2.2
languageName: unknown
linkType: soft
Expand Down
Loading