backend-manager 4.2.16 → 4.2.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 +8 -8
- package/src/cli/cli.js +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backend-manager",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.18",
|
|
4
4
|
"description": "Quick tools for developing Firebase functions",
|
|
5
5
|
"main": "src/manager/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@firebase/rules-unit-testing": "^2.0.7",
|
|
45
|
-
"@google-cloud/storage": "^7.15.
|
|
45
|
+
"@google-cloud/storage": "^7.15.1",
|
|
46
46
|
"@octokit/rest": "^19.0.13",
|
|
47
47
|
"@sendgrid/mail": "^7.7.0",
|
|
48
48
|
"@sentry/node": "^6.19.7",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"cors": "^2.8.5",
|
|
53
53
|
"dotenv": "^16.4.7",
|
|
54
54
|
"express": "^4.21.2",
|
|
55
|
-
"firebase-admin": "^13.0
|
|
56
|
-
"firebase-functions": "^6.3.
|
|
55
|
+
"firebase-admin": "^13.1.0",
|
|
56
|
+
"firebase-functions": "^6.3.2",
|
|
57
57
|
"fs-jetpack": "^5.1.0",
|
|
58
58
|
"glob": "^11.0.1",
|
|
59
59
|
"hcaptcha": "^0.1.1",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"moment": "^2.30.1",
|
|
70
70
|
"nanoid": "^3.3.8",
|
|
71
71
|
"node-fetch": "^2.7.0",
|
|
72
|
-
"node-powertools": "^2.1.
|
|
72
|
+
"node-powertools": "^2.1.5",
|
|
73
73
|
"npm-api": "^1.0.1",
|
|
74
74
|
"paypal-server-api": "^2.0.14",
|
|
75
75
|
"pushid": "^1.0.0",
|
|
@@ -79,13 +79,13 @@
|
|
|
79
79
|
"uid-generator": "^2.0.0",
|
|
80
80
|
"ultimate-jekyll-poster": "^1.0.2",
|
|
81
81
|
"uuid": "^9.0.1",
|
|
82
|
-
"wonderful-fetch": "^1.3.
|
|
82
|
+
"wonderful-fetch": "^1.3.3",
|
|
83
83
|
"wonderful-log": "^1.0.7",
|
|
84
|
-
"wonderful-version": "^1.2
|
|
84
|
+
"wonderful-version": "^1.3.2",
|
|
85
85
|
"yaml": "^2.7.0",
|
|
86
86
|
"yargs": "^17.7.2"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"prepare-package": "^1.1.
|
|
89
|
+
"prepare-package": "^1.1.14"
|
|
90
90
|
}
|
|
91
91
|
}
|
package/src/cli/cli.js
CHANGED
|
@@ -17,6 +17,7 @@ const JSON5 = require('json5');
|
|
|
17
17
|
const fetch = require('wonderful-fetch');
|
|
18
18
|
const argv = require('yargs').argv;
|
|
19
19
|
const powertools = require('node-powertools');
|
|
20
|
+
const os = require('os');
|
|
20
21
|
|
|
21
22
|
// function parseArgumentsIntoOptions(rawArgs) {
|
|
22
23
|
// const args = arg(
|
|
@@ -103,7 +104,7 @@ Main.prototype.process = async function (args) {
|
|
|
103
104
|
if ((self.options.i || self.options.install) && (self.options.dev || self.options.development) || self.options.local) {
|
|
104
105
|
await uninstallPkg('backend-manager');
|
|
105
106
|
// return await installPkg('file:../../../ITW-Creative-Works/backend-manager');
|
|
106
|
-
return await installPkg(
|
|
107
|
+
return await installPkg(`npm install ${os.homedir()}/Developer/Repositories/ITW-Creative-Works/backend-manager --save-dev`);
|
|
107
108
|
}
|
|
108
109
|
|
|
109
110
|
// Install live BEM
|