@live-change/db-admin 0.5.6 → 0.5.9
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/front/src/main.js +0 -6
- package/front/vite.config.js +0 -2
- package/package.json +4 -3
package/front/src/main.js
CHANGED
|
@@ -17,16 +17,10 @@ import App from './App.vue'
|
|
|
17
17
|
import Page from './Page.vue'
|
|
18
18
|
import { createRouter } from './router'
|
|
19
19
|
|
|
20
|
-
import emailValidator from "@live-change/email-service/clientEmailValidator.js"
|
|
21
|
-
import passwordValidator from "@live-change/password-authentication-service/clientPasswordValidator.js"
|
|
22
|
-
|
|
23
20
|
// SSR requires a fresh app instance per request, therefore we export a function
|
|
24
21
|
// that creates a fresh app instance. If using Vuex, we'd also be creating a
|
|
25
22
|
// fresh store here.
|
|
26
23
|
export function createApp(api) {
|
|
27
|
-
api.validators.email = emailValidator
|
|
28
|
-
api.validators.password = passwordValidator
|
|
29
|
-
|
|
30
24
|
const app = createSSRApp(App)
|
|
31
25
|
app.config.devtools = true
|
|
32
26
|
|
package/front/vite.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/db-admin",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "lcli memDev --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "rm tmp.db; lcli localDev --initScript ./init.js --dbAccess",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"codeceptjs-assert": "^0.0.5",
|
|
35
35
|
"compression": "^1.7.4",
|
|
36
36
|
"cross-env": "^7.0.3",
|
|
37
|
-
"
|
|
37
|
+
"find-free-ports": "^3.0.0",
|
|
38
38
|
"javascript-stringify": "^2.1.0",
|
|
39
39
|
"primeflex": "^3.1.3",
|
|
40
40
|
"primeicons": "^5.0.0",
|
|
@@ -67,5 +67,6 @@
|
|
|
67
67
|
},
|
|
68
68
|
"author": "",
|
|
69
69
|
"license": "ISC",
|
|
70
|
-
"description": ""
|
|
70
|
+
"description": "",
|
|
71
|
+
"gitHead": "3e27e47bddae99c97898a119b97a13745fb03f70"
|
|
71
72
|
}
|