@live-change/frontend-base 0.2.35 → 0.2.36
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 +18 -18
- package/vite-config.js +16 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/frontend-base",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.36",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "lcli memDev --enableSessions --initScript ./init.js --templatePath ../../base-frontend/index.html",
|
|
6
6
|
"localDevInit": "rm tmp.db; lcli localDev --enableSessions --initScript ./init.js",
|
|
@@ -20,21 +20,21 @@
|
|
|
20
20
|
"debug": "node --inspect-brk server"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@live-change/cli": "0.7.
|
|
24
|
-
"@live-change/dao": "0.5.
|
|
25
|
-
"@live-change/dao-message": "0.5.
|
|
26
|
-
"@live-change/dao-sockjs": "0.5.
|
|
27
|
-
"@live-change/dao-vue3": "0.5.
|
|
28
|
-
"@live-change/dao-websocket": "0.5.
|
|
29
|
-
"@live-change/email-service": "0.3.
|
|
30
|
-
"@live-change/password-authentication-service": "0.3.
|
|
31
|
-
"@live-change/secret-code-service": "0.3.
|
|
32
|
-
"@live-change/secret-link-service": "0.3.
|
|
33
|
-
"@live-change/security-frontend": "^0.2.
|
|
34
|
-
"@live-change/session-service": "0.3.
|
|
35
|
-
"@live-change/user-service": "0.3.
|
|
36
|
-
"@live-change/vue3-components": "0.2.
|
|
37
|
-
"@live-change/vue3-ssr": "0.2.
|
|
23
|
+
"@live-change/cli": "0.7.19",
|
|
24
|
+
"@live-change/dao": "0.5.15",
|
|
25
|
+
"@live-change/dao-message": "0.5.15",
|
|
26
|
+
"@live-change/dao-sockjs": "0.5.15",
|
|
27
|
+
"@live-change/dao-vue3": "0.5.15",
|
|
28
|
+
"@live-change/dao-websocket": "0.5.15",
|
|
29
|
+
"@live-change/email-service": "0.3.18",
|
|
30
|
+
"@live-change/password-authentication-service": "0.3.18",
|
|
31
|
+
"@live-change/secret-code-service": "0.3.18",
|
|
32
|
+
"@live-change/secret-link-service": "0.3.18",
|
|
33
|
+
"@live-change/security-frontend": "^0.2.36",
|
|
34
|
+
"@live-change/session-service": "0.3.18",
|
|
35
|
+
"@live-change/user-service": "0.3.18",
|
|
36
|
+
"@live-change/vue3-components": "0.2.24",
|
|
37
|
+
"@live-change/vue3-ssr": "0.2.24",
|
|
38
38
|
"@vitejs/plugin-vue": "^2.3.1",
|
|
39
39
|
"@vitejs/plugin-vue-jsx": "^1.3.10",
|
|
40
40
|
"@vue/compiler-sfc": "^3.2.37",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"vue3-scroll-border": "0.1.5"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@live-change/codeceptjs-helper": "0.7.
|
|
63
|
+
"@live-change/codeceptjs-helper": "0.7.19",
|
|
64
64
|
"@wdio/selenium-standalone-service": "^7.20.8",
|
|
65
65
|
"codeceptjs": "^3.3.4",
|
|
66
66
|
"generate-password": "1.7.0",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"author": "",
|
|
73
73
|
"license": "BSD-3-Clause",
|
|
74
74
|
"description": "",
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "46bcdce9557f6a5fb6bca978832ee9d9d48b9bc2"
|
|
76
76
|
}
|
package/vite-config.js
CHANGED
|
@@ -59,7 +59,13 @@ module.exports = async ({ command, mode }) => ({
|
|
|
59
59
|
include: [
|
|
60
60
|
/node_modules/,
|
|
61
61
|
/live-change-framework\/framework\//,
|
|
62
|
+
/live-change-framework\/relations-plugin\//,
|
|
62
63
|
/live-change-framework\/uid\//,
|
|
64
|
+
/live-change-db\/db-web\//,
|
|
65
|
+
/live-change-db\/db\//,
|
|
66
|
+
/live-change-db\/db-store-rbtree\//,
|
|
67
|
+
/live-change-db\/db-store-indexeddb\//,
|
|
68
|
+
/live-change-db\/db-store-localstorage\//,
|
|
63
69
|
/live-change-dao\/dao\//,
|
|
64
70
|
/live-change-dao\/dao-sockjs\//,
|
|
65
71
|
/live-change-dao\/dao-websocket\//,
|
|
@@ -73,6 +79,11 @@ module.exports = async ({ command, mode }) => ({
|
|
|
73
79
|
'@live-change/uid',
|
|
74
80
|
'@live-change/framework',
|
|
75
81
|
'@live-change/framework/lib/utils/validators.js',
|
|
82
|
+
'@live-change/relations-plugin',
|
|
83
|
+
'@live-change/db-web',
|
|
84
|
+
'@live-change/db',
|
|
85
|
+
'@live-change/db-store-indexeddb',
|
|
86
|
+
'@live-change/db-store-rbtree',
|
|
76
87
|
'debug',
|
|
77
88
|
'vite',
|
|
78
89
|
'pica'
|
|
@@ -110,6 +121,11 @@ module.exports = async ({ command, mode }) => ({
|
|
|
110
121
|
'@live-change/uid',
|
|
111
122
|
'@live-change/framework',
|
|
112
123
|
'@live-change/framework/lib/utils/validators.js',
|
|
124
|
+
'@live-change/relations-plugin',
|
|
125
|
+
'@live-change/db-web',
|
|
126
|
+
'@live-change/db',
|
|
127
|
+
'@live-change/db-store-indexeddb',
|
|
128
|
+
'@live-change/db-store-rbtree',
|
|
113
129
|
'debug',
|
|
114
130
|
'pica'
|
|
115
131
|
],
|