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

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
EddyVerbruggen committed Apr 7, 2020
1 parent 7816c0d commit 9d01fef
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion demo-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"nativescript-angular": "~8.0.3",
"nativescript-camera": "~4.5.0",
"nativescript-imagepicker": "~6.3.0",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.1.tgz",
"nativescript-theme-core": "~1.0.6",
"reflect-metadata": "~0.1.13",
"rxjs": "~6.5.2",
Expand Down
2 changes: 1 addition & 1 deletion demo-push/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
},
"dependencies": {
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.1.tgz",
"nativescript-theme-core": "~1.0.6",
"nativescript-unit-test-runner": "0.7.0",
"tns-core-modules": "~6.3.2"
Expand Down
2 changes: 1 addition & 1 deletion demo-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
},
"dependencies": {
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.1.tgz",
"nativescript-theme-core": "~1.0.6",
"nativescript-vue": "~2.4.0",
"tns-core-modules": "~6.3.2"
Expand Down
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"firebase-functions": "^2.0.5",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.1.tgz",
"nativescript-theme-core": "^1.0.4",
"nativescript-unit-test-runner": "0.7.0",
"tns-core-modules": "~6.3.2"
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nativescript-plugin-firebase",
"version": "10.5.0",
"version": "10.5.1",
"description": "Fire. Base. Firebase!",
"main": "firebase",
"typings": "index.d.ts",
Expand Down
8 changes: 4 additions & 4 deletions src/scripts/postinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -3626,13 +3626,13 @@ return new Promise(function(resolve, reject) {
var validStagingEnvs = ["dev", "development", "staging"];
var validProdEnvs = ['prod','production'];
var isProdEnv = false; // building with --env.prod or --env.production flag
var isStagingEnv = false;
var isStagingEnv = false;
var env = (hookArgs.platformSpecificData || hookArgs.prepareData).env;
if (env) {
Object.keys(env).forEach((key) => {
if (validProdEnvs.indexOf(key)>-1) {
isProdEnv=true;
if (validProdEnvs.indexOf(key)>-1) {
isProdEnv = true;
}
if (validStagingEnvs.indexOf(key) > -1) {
isStagingEnv = true;
Expand Down Expand Up @@ -3958,4 +3958,4 @@ function isPresent(value) {


/***/ })
/******/ ]);
/******/ ]);

0 comments on commit 9d01fef

Please sign in to comment.