Skip to content

Commit c258be3

Browse files
committed
storage
1 parent 094d99c commit c258be3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

packages/storage-compat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"rollup": "2.79.1",
5151
"@rollup/plugin-json": "4.1.0",
5252
"rollup-plugin-typescript2": "0.31.2",
53-
"typescript": "4.2.2"
53+
"typescript": "4.7.4"
5454
},
5555
"files": [
5656
"dist"

packages/storage-compat/test/integration/integration.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ describe('FirebaseStorage Compat', () => {
7070
ref.putString('foo');
7171
expect.fail();
7272
} catch (e) {
73-
expect(e.message).to.satisfy((v: string) =>
73+
expect((e as Error).message).to.satisfy((v: string) =>
7474
v.match(
7575
/The operation 'putString' cannot be performed on a root reference/
7676
)
@@ -93,7 +93,7 @@ describe('FirebaseStorage Compat', () => {
9393
await ref.getDownloadURL();
9494
expect.fail();
9595
} catch (e) {
96-
expect(e.message).to.satisfy((v: string) =>
96+
expect((e as Error).message).to.satisfy((v: string) =>
9797
v.match(/Object 'public\/delete' does not exist/)
9898
);
9999
}

packages/storage-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
"url": "https://github.com/firebase/firebase-js-sdk/issues"
2525
},
2626
"devDependencies": {
27-
"typescript": "4.2.2"
27+
"typescript": "4.7.4"
2828
}
2929
}

packages/storage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"@rollup/plugin-alias": "3.1.9",
5858
"@rollup/plugin-json": "4.1.0",
5959
"rollup-plugin-typescript2": "0.31.2",
60-
"typescript": "4.2.2"
60+
"typescript": "4.7.4"
6161
},
6262
"repository": {
6363
"directory": "packages/storage",

0 commit comments

Comments
 (0)