backend-manager 3.2.8 → 3.2.10

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backend-manager",
3
- "version": "3.2.8",
3
+ "version": "3.2.10",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
@@ -40,7 +40,7 @@
40
40
  "busboy": "^1.6.0",
41
41
  "chalk": "^4.1.2",
42
42
  "cors": "^2.8.5",
43
- "dotenv": "^16.4.0",
43
+ "dotenv": "^16.4.1",
44
44
  "firebase-admin": "^11.11.1",
45
45
  "firebase-functions": "^4.6.0",
46
46
  "fs-jetpack": "^5.1.0",
@@ -55,7 +55,7 @@
55
55
  "moment": "^2.30.1",
56
56
  "nanoid": "^3.3.7",
57
57
  "node-fetch": "^2.7.0",
58
- "node-powertools": "^1.2.0",
58
+ "node-powertools": "^1.2.1",
59
59
  "npm-api": "^1.0.1",
60
60
  "paypal-server-api": "^1.0.3",
61
61
  "pushid": "^1.0.0",
@@ -70,4 +70,4 @@
70
70
  "wonderful-log": "^1.0.5",
71
71
  "yargs": "^17.7.2"
72
72
  }
73
- }
73
+ }
@@ -42,7 +42,7 @@ Settings.prototype.resolve = function (assistant, schema, settings) {
42
42
  // Resolve settings
43
43
  self.settings = powertools.defaults(settings, schema);
44
44
 
45
- // Check for missing required keys
45
+ // // Perform checks
46
46
  powertools.getKeys(schema).forEach((key) => {
47
47
  const isRequired = key.endsWith('.required') ? _.get(schema, key, false) : false;
48
48
 
@@ -4,20 +4,20 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
- <title>Simple Index Page</title>
7
+ <title>404 Error Page</title>
8
8
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
9
9
  </head>
10
10
 
11
11
  <body>
12
- <div class="container py-5">
13
- <div class="row">
14
- <div class="col text-center">
15
- <h1>Welcome</h1>
12
+ <div class="d-flex align-items-center justify-content-center vh-100">
13
+ <div class="text-center">
14
+ <h1 class="display-1 fw-bold">Welcome!</h1>
16
15
 
17
- <p class="lead">This is an internal page, please return to our main website</p>
16
+ <p class="lead">
17
+ This is an internal page, please return to our main website
18
+ </p>
18
19
 
19
- <a href="{url}" class="btn btn-primary">Go Home</a>
20
- </div>
20
+ <a href="{url}" class="btn btn-primary">Go Home</a>
21
21
  </div>
22
22
  </div>
23
23
  </body>