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

Commit 9d01fef

Browse files
bump
1 parent 7816c0d commit 9d01fef

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

demo-ng/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"nativescript-angular": "~8.0.3",
2626
"nativescript-camera": "~4.5.0",
2727
"nativescript-imagepicker": "~6.3.0",
28-
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
28+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.1.tgz",
2929
"nativescript-theme-core": "~1.0.6",
3030
"reflect-metadata": "~0.1.13",
3131
"rxjs": "~6.5.2",

demo-push/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
},
1111
"dependencies": {
12-
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
12+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.1.tgz",
1313
"nativescript-theme-core": "~1.0.6",
1414
"nativescript-unit-test-runner": "0.7.0",
1515
"tns-core-modules": "~6.3.2"

demo-vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
},
1616
"dependencies": {
17-
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
17+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.1.tgz",
1818
"nativescript-theme-core": "~1.0.6",
1919
"nativescript-vue": "~2.4.0",
2020
"tns-core-modules": "~6.3.2"

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"firebase-functions": "^2.0.5",
13-
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
13+
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.1.tgz",
1414
"nativescript-theme-core": "^1.0.4",
1515
"nativescript-unit-test-runner": "0.7.0",
1616
"tns-core-modules": "~6.3.2"

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-plugin-firebase",
3-
"version": "10.5.0",
3+
"version": "10.5.1",
44
"description": "Fire. Base. Firebase!",
55
"main": "firebase",
66
"typings": "index.d.ts",

src/scripts/postinstall.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3626,13 +3626,13 @@ return new Promise(function(resolve, reject) {
36263626
var validStagingEnvs = ["dev", "development", "staging"];
36273627
var validProdEnvs = ['prod','production'];
36283628
var isProdEnv = false; // building with --env.prod or --env.production flag
3629-
var isStagingEnv = false;
3629+
var isStagingEnv = false;
36303630
var env = (hookArgs.platformSpecificData || hookArgs.prepareData).env;
36313631
36323632
if (env) {
36333633
Object.keys(env).forEach((key) => {
3634-
if (validProdEnvs.indexOf(key)>-1) {
3635-
isProdEnv=true;
3634+
if (validProdEnvs.indexOf(key)>-1) {
3635+
isProdEnv = true;
36363636
}
36373637
if (validStagingEnvs.indexOf(key) > -1) {
36383638
isStagingEnv = true;
@@ -3958,4 +3958,4 @@ function isPresent(value) {
39583958

39593959

39603960
/***/ })
3961-
/******/ ]);
3961+
/******/ ]);

0 commit comments

Comments
 (0)