Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit faaaa7a

Browse files
committed
chore: 11.1.0
1 parent 99339be commit faaaa7a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/app/storage/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ export module storage {
1919

2020
parent: Reference | null; // TODO set this every time we navigate..
2121
root: Reference;
22-
fullPath = this.path;
22+
fullPath: string;
2323

2424
constructor(path?: string) {
2525
this.path = path;
26+
this.fullPath = this.path;
2627
if (path && path.length > 0) {
2728
this.root = new Reference();
2829
} else {

src/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/firebase",
3-
"version": "11.0.0",
3+
"version": "11.1.0",
44
"description": "Fire. Base. Firebase!",
55
"main": "firebase",
66
"typings": "index.d.ts",
@@ -148,7 +148,7 @@
148148
"@nativescript/types": "~7.0.0",
149149
"@nativescript/webpack": "~3.0.0",
150150
"tslint": "~6.1.3",
151-
"typescript": "~3.9.0",
151+
"typescript": "~4.0.0",
152152
"ts-patch": "^1.3.0"
153153
}
154154
}

0 commit comments

Comments
 (0)