@live-change/cli 0.6.2 → 0.6.5
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/bin/lcli.js +8 -0
- package/package.json +9 -9
package/bin/lcli.js
CHANGED
|
@@ -112,6 +112,14 @@ function ssrServerOptions(yargs) {
|
|
|
112
112
|
describe: 'start internal api server',
|
|
113
113
|
type: 'boolean'
|
|
114
114
|
})
|
|
115
|
+
yargs.option('serverEntry', {
|
|
116
|
+
describe: 'front ssr entry file',
|
|
117
|
+
type: 'string'
|
|
118
|
+
})
|
|
119
|
+
yargs.option('templatePath', {
|
|
120
|
+
describe: 'front ssr entry file',
|
|
121
|
+
type: 'string'
|
|
122
|
+
})
|
|
115
123
|
}
|
|
116
124
|
|
|
117
125
|
const argv = require('yargs') // eslint-disable-line
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.5",
|
|
4
4
|
"description": "Live Change Framework - command line interface",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
},
|
|
25
25
|
"homepage": "https://github.com/live-change/live-change-framework",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@live-change/dao": "0.4.
|
|
28
|
-
"@live-change/dao-sockjs": "0.4.
|
|
29
|
-
"@live-change/dao-websocket": "0.4.
|
|
30
|
-
"@live-change/db-server": "0.5.
|
|
31
|
-
"@live-change/framework": "^0.6.
|
|
32
|
-
"@live-change/server": "^0.6.
|
|
33
|
-
"@live-change/vue3-ssr": "0.2.
|
|
27
|
+
"@live-change/dao": "0.4.10",
|
|
28
|
+
"@live-change/dao-sockjs": "0.4.8",
|
|
29
|
+
"@live-change/dao-websocket": "0.4.10",
|
|
30
|
+
"@live-change/db-server": "0.5.9",
|
|
31
|
+
"@live-change/framework": "^0.6.5",
|
|
32
|
+
"@live-change/server": "^0.6.5",
|
|
33
|
+
"@live-change/vue3-ssr": "0.2.9",
|
|
34
34
|
"dotenv": "^10.0.0",
|
|
35
35
|
"express": "^4.17.1",
|
|
36
36
|
"http-proxy-middleware": "2.0.1",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"websocket": "^1.0.34",
|
|
42
42
|
"yargs": "^17.3.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "6ffba5113875638abf4203b56bdab5ed6a2e5e55"
|
|
45
45
|
}
|