backend-manager 3.0.16 → 3.0.18
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/cli/cli.js +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backend-manager",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.18",
|
|
4
4
|
"description": "Quick tools for developing Firebase functions",
|
|
5
5
|
"main": "src/manager/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"homepage": "https://itwcreativeworks.com",
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@firebase/rules-unit-testing": "^2.0.7",
|
|
35
|
-
"@google-cloud/storage": "^7.0
|
|
35
|
+
"@google-cloud/storage": "^7.6.0",
|
|
36
36
|
"@sendgrid/mail": "^7.7.0",
|
|
37
37
|
"@sentry/node": "^6.19.7",
|
|
38
38
|
"busboy": "^1.6.0",
|
|
39
39
|
"chalk": "^4.1.2",
|
|
40
40
|
"cors": "^2.8.5",
|
|
41
41
|
"dotenv": "^16.3.1",
|
|
42
|
-
"firebase-admin": "^11.
|
|
43
|
-
"firebase-functions": "^4.
|
|
42
|
+
"firebase-admin": "^11.11.0",
|
|
43
|
+
"firebase-functions": "^4.5.0",
|
|
44
44
|
"fs-jetpack": "^5.1.0",
|
|
45
45
|
"hcaptcha": "^0.1.1",
|
|
46
46
|
"inquirer": "^8.2.5",
|
|
@@ -51,13 +51,13 @@
|
|
|
51
51
|
"mailchimp-api-v3": "^1.15.0",
|
|
52
52
|
"mocha": "^8.4.0",
|
|
53
53
|
"moment": "^2.29.4",
|
|
54
|
-
"nanoid": "^3.3.
|
|
54
|
+
"nanoid": "^3.3.7",
|
|
55
55
|
"node-fetch": "^2.7.0",
|
|
56
56
|
"node-powertools": "^1.1.0",
|
|
57
57
|
"npm-api": "^1.0.1",
|
|
58
58
|
"paypal-server-api": "^1.0.3",
|
|
59
59
|
"pushid": "^1.0.0",
|
|
60
|
-
"resolve-account": "^1.0.
|
|
60
|
+
"resolve-account": "^1.0.4",
|
|
61
61
|
"semver": "^7.5.4",
|
|
62
62
|
"shortid": "^2.2.16",
|
|
63
63
|
"sizeitup": "^1.0.7",
|
package/src/cli/cli.js
CHANGED
|
@@ -540,9 +540,9 @@ Main.prototype.setup = async function () {
|
|
|
540
540
|
}, fix_firebaseHostingFolder);
|
|
541
541
|
|
|
542
542
|
// Hosting
|
|
543
|
-
await self.test('hosting has', async function () {
|
|
544
|
-
|
|
545
|
-
}, NOFIX);
|
|
543
|
+
// await self.test('hosting has auth page', async function () {
|
|
544
|
+
// return await fix_firebaseHostingAuth(self);
|
|
545
|
+
// }, NOFIX);
|
|
546
546
|
|
|
547
547
|
await self.test('update backend-manager-tests.js', function () {
|
|
548
548
|
jetpack.write(`${self.firebaseProjectPath}/test/backend-manager-tests.js`,
|