@live-change/frontend-base 0.9.101 → 0.9.103
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 +19 -19
- package/vite-config.js +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/frontend-base",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.103",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "node server/start.js memDev --enableSessions --initScript ./init.js --templatePath ../../base-frontend/index.html",
|
|
6
6
|
"localDevInit": "rm tmp.db; lcli localDev --enableSessions --initScript ./init.js",
|
|
@@ -35,21 +35,21 @@
|
|
|
35
35
|
"@lezer/rust": "=1.0.1",
|
|
36
36
|
"@lezer/sass": "=1.0.3",
|
|
37
37
|
"@lezer/xml": "=1.0.2",
|
|
38
|
-
"@live-change/cli": "^0.9.
|
|
39
|
-
"@live-change/dao": "^0.9.
|
|
40
|
-
"@live-change/dao-message": "^0.9.
|
|
41
|
-
"@live-change/dao-sockjs": "^0.9.
|
|
42
|
-
"@live-change/dao-vue3": "^0.9.
|
|
43
|
-
"@live-change/dao-websocket": "^0.9.
|
|
44
|
-
"@live-change/email-service": "^0.9.
|
|
45
|
-
"@live-change/password-authentication-service": "^0.9.
|
|
46
|
-
"@live-change/secret-code-service": "^0.9.
|
|
47
|
-
"@live-change/secret-link-service": "^0.9.
|
|
48
|
-
"@live-change/security-frontend": "^0.9.
|
|
49
|
-
"@live-change/session-service": "^0.9.
|
|
50
|
-
"@live-change/user-service": "^0.9.
|
|
51
|
-
"@live-change/vue3-components": "^0.9.
|
|
52
|
-
"@live-change/vue3-ssr": "^0.9.
|
|
38
|
+
"@live-change/cli": "^0.9.103",
|
|
39
|
+
"@live-change/dao": "^0.9.103",
|
|
40
|
+
"@live-change/dao-message": "^0.9.103",
|
|
41
|
+
"@live-change/dao-sockjs": "^0.9.103",
|
|
42
|
+
"@live-change/dao-vue3": "^0.9.103",
|
|
43
|
+
"@live-change/dao-websocket": "^0.9.103",
|
|
44
|
+
"@live-change/email-service": "^0.9.103",
|
|
45
|
+
"@live-change/password-authentication-service": "^0.9.103",
|
|
46
|
+
"@live-change/secret-code-service": "^0.9.103",
|
|
47
|
+
"@live-change/secret-link-service": "^0.9.103",
|
|
48
|
+
"@live-change/security-frontend": "^0.9.103",
|
|
49
|
+
"@live-change/session-service": "^0.9.103",
|
|
50
|
+
"@live-change/user-service": "^0.9.103",
|
|
51
|
+
"@live-change/vue3-components": "^0.9.103",
|
|
52
|
+
"@live-change/vue3-ssr": "^0.9.103",
|
|
53
53
|
"@primevue/themes": "^4.3.3",
|
|
54
54
|
"@tailwindcss/node": "4.1.0",
|
|
55
55
|
"@tailwindcss/oxide": "4.1.0",
|
|
@@ -106,12 +106,12 @@
|
|
|
106
106
|
"vue3-scroll-border": "0.1.7"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@live-change/codeceptjs-helper": "^0.9.
|
|
109
|
+
"@live-change/codeceptjs-helper": "^0.9.103",
|
|
110
110
|
"codeceptjs": "^3.6.10",
|
|
111
111
|
"generate-password": "1.7.1",
|
|
112
112
|
"playwright": "1.49.1",
|
|
113
113
|
"random-profile-generator": "^2.3.0",
|
|
114
|
-
"tsx": "4.
|
|
114
|
+
"tsx": "4.20.3",
|
|
115
115
|
"txtgen": "^3.0.7",
|
|
116
116
|
"webdriverio": "^9.5.1"
|
|
117
117
|
},
|
|
@@ -121,5 +121,5 @@
|
|
|
121
121
|
"author": "Michał Łaszczewski <michal@laszczewski.pl>",
|
|
122
122
|
"license": "BSD-3-Clause",
|
|
123
123
|
"description": "",
|
|
124
|
-
"gitHead": "
|
|
124
|
+
"gitHead": "665bfa896fe92865a97556c86953f6d515ffc9ab"
|
|
125
125
|
}
|
package/vite-config.js
CHANGED
|
@@ -48,7 +48,7 @@ const ssrTransformCustomDir = () => {
|
|
|
48
48
|
|
|
49
49
|
let version = process.env.VERSION ?? 'unknown'
|
|
50
50
|
|
|
51
|
-
export default async ({ command, mode, version }, options = {
|
|
51
|
+
export default async ({ command, mode, version, isSsrBuild, isPreview }, options = {
|
|
52
52
|
ssrDisabledDirectives: ['ripple', 'styleclass', 'badge', 'shared-element', 'lazy']
|
|
53
53
|
}) => {
|
|
54
54
|
//console.log("VITE CONFIG", command, mode, process.argv)
|
|
@@ -180,6 +180,14 @@ export default async ({ command, mode, version }, options = {
|
|
|
180
180
|
/node_modules/
|
|
181
181
|
]
|
|
182
182
|
},
|
|
183
|
+
rollupOptions: {
|
|
184
|
+
...(isSsrBuild ? {
|
|
185
|
+
output: {
|
|
186
|
+
inlineDynamicImports: true,
|
|
187
|
+
manualChunks: undefined, // disable dynamic splitting
|
|
188
|
+
}
|
|
189
|
+
} : {})
|
|
190
|
+
}
|
|
183
191
|
},
|
|
184
192
|
ssr: {
|
|
185
193
|
external: [
|