backend-manager 4.2.23 → 4.2.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -6
- package/src/manager/index.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backend-manager",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.25",
|
|
4
4
|
"description": "Quick tools for developing Firebase functions",
|
|
5
5
|
"main": "src/manager/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
"busboy": "^1.6.0",
|
|
51
51
|
"chalk": "^4.1.2",
|
|
52
52
|
"cors": "^2.8.5",
|
|
53
|
-
"dotenv": "^16.
|
|
53
|
+
"dotenv": "^16.6.1",
|
|
54
54
|
"express": "^4.21.2",
|
|
55
|
-
"firebase-admin": "^13.
|
|
55
|
+
"firebase-admin": "^13.4.0",
|
|
56
56
|
"firebase-functions": "^6.3.2",
|
|
57
57
|
"fs-jetpack": "^5.1.0",
|
|
58
|
-
"glob": "^11.0.
|
|
58
|
+
"glob": "^11.0.3",
|
|
59
59
|
"hcaptcha": "^0.1.1",
|
|
60
60
|
"inquirer": "^8.2.5",
|
|
61
61
|
"itwcw-package-analytics": "^1.0.6",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"moment": "^2.30.1",
|
|
70
70
|
"nanoid": "^3.3.11",
|
|
71
71
|
"node-fetch": "^2.7.0",
|
|
72
|
-
"node-powertools": "^2.
|
|
72
|
+
"node-powertools": "^2.3.1",
|
|
73
73
|
"npm-api": "^1.0.1",
|
|
74
74
|
"paypal-server-api": "^2.0.14",
|
|
75
75
|
"pushid": "^1.0.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"wonderful-fetch": "^1.3.3",
|
|
83
83
|
"wonderful-log": "^1.0.7",
|
|
84
84
|
"wonderful-version": "^1.3.2",
|
|
85
|
-
"yaml": "^2.
|
|
85
|
+
"yaml": "^2.8.0",
|
|
86
86
|
"yargs": "^17.7.2"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
package/src/manager/index.js
CHANGED
|
@@ -231,7 +231,7 @@ Manager.prototype.init = function (exporter, options) {
|
|
|
231
231
|
// Setup options features
|
|
232
232
|
if (self.options.initialize) {
|
|
233
233
|
// Initialize Firebase
|
|
234
|
-
try {
|
|
234
|
+
// try {
|
|
235
235
|
// Initialize Firebase
|
|
236
236
|
if (process.env.GOOGLE_APPLICATION_CREDENTIALS) {
|
|
237
237
|
self.libraries.initializedAdmin = self.libraries.admin.initializeApp();
|
|
@@ -249,9 +249,9 @@ Manager.prototype.init = function (exporter, options) {
|
|
|
249
249
|
self.assistant.error(`Loaded app may have wrong service account: ${loadedProjectId} =/= ${appId}`);
|
|
250
250
|
}
|
|
251
251
|
}
|
|
252
|
-
} catch (e) {
|
|
253
|
-
self.assistant.error('Failed to call .initializeApp()', e);
|
|
254
|
-
}
|
|
252
|
+
// } catch (e) {
|
|
253
|
+
// self.assistant.error('Failed to call .initializeApp()', e);
|
|
254
|
+
// }
|
|
255
255
|
|
|
256
256
|
// Update firebase settings
|
|
257
257
|
try {
|