@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 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
 
@@ -84,8 +84,6 @@ export default defineConfig(async ({ command, mode }) => {
84
84
  },
85
85
  optimizeDeps: {
86
86
  include: [
87
- '@live-change/vue-api',
88
- '@live-change/vue-api-session',
89
87
  '@live-change/dao',
90
88
  '@live-change/dao-sockjs',
91
89
  '@live-change/dao-websocket',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/db-admin",
3
- "version": "0.5.6",
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
- "get-port-sync": "1.0.1",
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
  }