@saltcorn/cli 1.3.0 → 1.3.1-beta.0
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/README.md +52 -50
- package/npm-shrinkwrap.json +1641 -309
- package/oclif.manifest.json +8 -1
- package/package.json +8 -8
- package/src/commands/build-app.js +7 -0
package/oclif.manifest.json
CHANGED
|
@@ -293,6 +293,13 @@
|
|
|
293
293
|
"hasDynamicHelp": false,
|
|
294
294
|
"multiple": false,
|
|
295
295
|
"type": "option"
|
|
296
|
+
},
|
|
297
|
+
"googleServicesFile": {
|
|
298
|
+
"description": "Path to the google-services.json file for Firebase Push Notifications (Android only)",
|
|
299
|
+
"name": "googleServicesFile",
|
|
300
|
+
"hasDynamicHelp": false,
|
|
301
|
+
"multiple": false,
|
|
302
|
+
"type": "option"
|
|
296
303
|
}
|
|
297
304
|
},
|
|
298
305
|
"hasDynamicHelp": false,
|
|
@@ -2233,5 +2240,5 @@
|
|
|
2233
2240
|
]
|
|
2234
2241
|
}
|
|
2235
2242
|
},
|
|
2236
|
-
"version": "1.3.0"
|
|
2243
|
+
"version": "1.3.1-beta.0"
|
|
2237
2244
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@saltcorn/cli",
|
|
3
3
|
"description": "Command-line interface for Saltcorn, open-source no-code platform",
|
|
4
4
|
"homepage": "https://saltcorn.com",
|
|
5
|
-
"version": "1.3.0",
|
|
5
|
+
"version": "1.3.1-beta.0",
|
|
6
6
|
"author": "Tom Nielsen @glutamate",
|
|
7
7
|
"bin": {
|
|
8
8
|
"saltcorn": "./bin/saltcorn"
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@oclif/core": "^4.2.4",
|
|
13
13
|
"@oclif/plugin-plugins": "^5.4.26",
|
|
14
|
-
"@saltcorn/admin-models": "1.3.0",
|
|
15
|
-
"@saltcorn/common-code": "1.3.0",
|
|
16
|
-
"@saltcorn/data": "1.3.0",
|
|
17
|
-
"@saltcorn/mobile-app": "1.3.0",
|
|
18
|
-
"@saltcorn/mobile-builder": "1.3.0",
|
|
19
|
-
"@saltcorn/plugins-loader": "1.3.0",
|
|
20
|
-
"@saltcorn/server": "1.3.0",
|
|
14
|
+
"@saltcorn/admin-models": "1.3.1-beta.0",
|
|
15
|
+
"@saltcorn/common-code": "1.3.1-beta.0",
|
|
16
|
+
"@saltcorn/data": "1.3.1-beta.0",
|
|
17
|
+
"@saltcorn/mobile-app": "1.3.1-beta.0",
|
|
18
|
+
"@saltcorn/mobile-builder": "1.3.1-beta.0",
|
|
19
|
+
"@saltcorn/plugins-loader": "1.3.1-beta.0",
|
|
20
|
+
"@saltcorn/server": "1.3.1-beta.0",
|
|
21
21
|
"contractis": "^0.1.0",
|
|
22
22
|
"dateformat": "^4.6.3",
|
|
23
23
|
"inquirer": "^12.3.3",
|
|
@@ -144,6 +144,7 @@ class BuildAppCommand extends Command {
|
|
|
144
144
|
keyStorePath: flags.androidKeystore,
|
|
145
145
|
keyStoreAlias: flags.androidKeyStoreAlias,
|
|
146
146
|
keyStorePassword: flags.androidKeystorePassword,
|
|
147
|
+
googleServicesFile: flags.googleServicesFile,
|
|
147
148
|
});
|
|
148
149
|
let result;
|
|
149
150
|
switch (flags.mode) {
|
|
@@ -336,6 +337,12 @@ BuildAppCommand.flags = {
|
|
|
336
337
|
string: "keyStorePassword",
|
|
337
338
|
description: "he password to access the keystore file.",
|
|
338
339
|
}),
|
|
340
|
+
googleServicesFile: Flags.string({
|
|
341
|
+
name: "google services file",
|
|
342
|
+
string: "googleServicesFile",
|
|
343
|
+
description:
|
|
344
|
+
"Path to the google-services.json file for Firebase Push Notifications (Android only)",
|
|
345
|
+
}),
|
|
339
346
|
};
|
|
340
347
|
|
|
341
348
|
module.exports = BuildAppCommand;
|