@live-change/db-admin 0.6.20 → 0.6.21

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.
@@ -20,7 +20,7 @@ export async function render({ url, dao, windowId }) {
20
20
  use: [ ]
21
21
  })
22
22
 
23
- const { app, router } = createApp(api)
23
+ const { app, router, head } = createApp(api)
24
24
 
25
25
  // set the router to the desired URL before rendering
26
26
  router.push(url)
package/front/src/main.js CHANGED
@@ -49,5 +49,5 @@ export function createApp(api) {
49
49
  const head = createHead()
50
50
  app.use(head)
51
51
 
52
- return { app, router }
52
+ return { app, router, head }
53
53
  }
@@ -103,11 +103,13 @@ export default defineConfig(async ({ command, mode }) => {
103
103
  '@live-change/uid',
104
104
  '@live-change/framework',
105
105
  '@live-change/framework/lib/utils/validators.js',
106
- 'debug',
106
+ 'debug'
107
+ ],
108
+ exclude: [
107
109
  'primevue',
108
110
  'primevue/usetoast',
109
111
  'primevue/useconfirm',
110
- 'primevue/usedialog'
112
+ 'primevue/usedialog',
111
113
  ]
112
114
  },
113
115
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/db-admin",
3
- "version": "0.6.20",
3
+ "version": "0.6.21",
4
4
  "scripts": {
5
5
  "memDev": "lcli memDev --initScript ./init.js --dbAccess",
6
6
  "localDevInit": "rm tmp.db; lcli localDev --initScript ./init.js --dbAccess",
@@ -62,5 +62,5 @@
62
62
  "author": "",
63
63
  "license": "ISC",
64
64
  "description": "",
65
- "gitHead": "11bcfb55a515c8804a75a7b3bba1392d86658dd9"
65
+ "gitHead": "23e76536520d553e1caaf7ec6340df736f4cc9fd"
66
66
  }