@saltcorn/cli 1.5.0-beta.6 → 1.5.0-beta.8
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 +54 -52
- package/npm-shrinkwrap.json +305 -296
- package/oclif.manifest.json +7 -1
- package/package.json +8 -8
- package/src/commands/build-app.js +7 -0
package/oclif.manifest.json
CHANGED
|
@@ -246,6 +246,12 @@
|
|
|
246
246
|
"allowNo": false,
|
|
247
247
|
"type": "boolean"
|
|
248
248
|
},
|
|
249
|
+
"showContinueAsPublicUser": {
|
|
250
|
+
"description": "Show a button to continue as public user on the login screen.",
|
|
251
|
+
"name": "showContinueAsPublicUser",
|
|
252
|
+
"allowNo": false,
|
|
253
|
+
"type": "boolean"
|
|
254
|
+
},
|
|
249
255
|
"allowOfflineMode": {
|
|
250
256
|
"description": "Switch to offline mode when there is no internet, sync the data when a connection is available again.",
|
|
251
257
|
"name": "allowOfflineMode",
|
|
@@ -2247,5 +2253,5 @@
|
|
|
2247
2253
|
]
|
|
2248
2254
|
}
|
|
2249
2255
|
},
|
|
2250
|
-
"version": "1.5.0-beta.
|
|
2256
|
+
"version": "1.5.0-beta.8"
|
|
2251
2257
|
}
|
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.5.0-beta.
|
|
5
|
+
"version": "1.5.0-beta.8",
|
|
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.4.0",
|
|
13
13
|
"@oclif/plugin-plugins": "^5.4.26",
|
|
14
|
-
"@saltcorn/admin-models": "1.5.0-beta.
|
|
15
|
-
"@saltcorn/common-code": "1.5.0-beta.
|
|
16
|
-
"@saltcorn/data": "1.5.0-beta.
|
|
17
|
-
"@saltcorn/mobile-app": "1.5.0-beta.
|
|
18
|
-
"@saltcorn/mobile-builder": "1.5.0-beta.
|
|
19
|
-
"@saltcorn/plugins-loader": "1.5.0-beta.
|
|
20
|
-
"@saltcorn/server": "1.5.0-beta.
|
|
14
|
+
"@saltcorn/admin-models": "1.5.0-beta.8",
|
|
15
|
+
"@saltcorn/common-code": "1.5.0-beta.8",
|
|
16
|
+
"@saltcorn/data": "1.5.0-beta.8",
|
|
17
|
+
"@saltcorn/mobile-app": "1.5.0-beta.8",
|
|
18
|
+
"@saltcorn/mobile-builder": "1.5.0-beta.8",
|
|
19
|
+
"@saltcorn/plugins-loader": "1.5.0-beta.8",
|
|
20
|
+
"@saltcorn/server": "1.5.0-beta.8",
|
|
21
21
|
"contractis": "^0.1.0",
|
|
22
22
|
"dateformat": "^4.6.3",
|
|
23
23
|
"inquirer": "^12.3.3",
|
|
@@ -135,6 +135,7 @@ class BuildAppCommand extends Command {
|
|
|
135
135
|
serverURL: flags.serverURL,
|
|
136
136
|
splashPage: flags.splashPage,
|
|
137
137
|
autoPublicLogin: flags.autoPublicLogin,
|
|
138
|
+
showContinueAsPublicUser: flags.showContinueAsPublicUser,
|
|
138
139
|
allowOfflineMode: flags.allowOfflineMode,
|
|
139
140
|
allowShareTo: flags.allowShareTo,
|
|
140
141
|
plugins: await this.uniquePlugins(flags.includedPlugins),
|
|
@@ -301,6 +302,12 @@ BuildAppCommand.flags = {
|
|
|
301
302
|
string: "autoPublicLogin",
|
|
302
303
|
description: "Show public entry points before the login as a public user.",
|
|
303
304
|
}),
|
|
305
|
+
showContinueAsPublicUser: Flags.boolean({
|
|
306
|
+
name: "show continue as public user",
|
|
307
|
+
string: "showContinueAsPublicUser",
|
|
308
|
+
description:
|
|
309
|
+
"Show a button to continue as public user on the login screen.",
|
|
310
|
+
}),
|
|
304
311
|
allowOfflineMode: Flags.boolean({
|
|
305
312
|
name: "Allow offline mode",
|
|
306
313
|
string: "allowOfflineMode",
|