@live-change/cli 0.8.20 → 0.8.22
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/lib/starter.js +9 -0
- package/package.json +8 -8
package/lib/starter.js
CHANGED
|
@@ -139,6 +139,15 @@ function ssrServerOptions(yargs) {
|
|
|
139
139
|
describe: 'vite mode',
|
|
140
140
|
type: 'string'
|
|
141
141
|
})
|
|
142
|
+
yargs.option('sessionCookieExpire', {
|
|
143
|
+
describe: 'time in seconds for session cookie to expire',
|
|
144
|
+
type: 'number',
|
|
145
|
+
})
|
|
146
|
+
yargs.option('sessionCookieDomain', {
|
|
147
|
+
describe: 'domain for session cookie',
|
|
148
|
+
type: 'string',
|
|
149
|
+
default: process.env.SESSION_COOKIE_DOMAIN
|
|
150
|
+
})
|
|
142
151
|
}
|
|
143
152
|
|
|
144
153
|
let globalServicesConfig
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/cli",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.22",
|
|
4
4
|
"description": "Live Change Framework - command line interface",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"type": "module",
|
|
26
26
|
"homepage": "https://github.com/live-change/live-change-stack",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@live-change/dao": "^0.8.
|
|
29
|
-
"@live-change/dao-sockjs": "^0.8.
|
|
30
|
-
"@live-change/dao-websocket": "^0.8.
|
|
31
|
-
"@live-change/db-server": "^0.8.
|
|
32
|
-
"@live-change/framework": "^0.8.
|
|
33
|
-
"@live-change/server": "^0.8.
|
|
28
|
+
"@live-change/dao": "^0.8.22",
|
|
29
|
+
"@live-change/dao-sockjs": "^0.8.22",
|
|
30
|
+
"@live-change/dao-websocket": "^0.8.22",
|
|
31
|
+
"@live-change/db-server": "^0.8.22",
|
|
32
|
+
"@live-change/framework": "^0.8.22",
|
|
33
|
+
"@live-change/server": "^0.8.22",
|
|
34
34
|
"dotenv": "^16.4.4",
|
|
35
35
|
"express": "^4.18.2",
|
|
36
36
|
"http-proxy-middleware": "2.0.6",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"websocket": "^1.0.34",
|
|
41
41
|
"yargs": "^17.7.2"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "70a56ac3dc54167a2d32ce47a00150e7a94bd04d"
|
|
44
44
|
}
|