@live-change/server 0.7.24 → 0.7.26

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.
Files changed (2) hide show
  1. package/lib/Renderer.js +3 -1
  2. package/package.json +5 -6
package/lib/Renderer.js CHANGED
@@ -67,8 +67,10 @@ class Renderer {
67
67
  '<head>': (meta.headAttrs ? `<head ${meta.headAttrs}>` : '<head>'),
68
68
  '<!--head-->': (meta.head || '') + '\n' + preloadLinks,
69
69
  '<body>': (meta.bodyAttrs ? `<body ${meta.bodyAttrs}>` : '<body>') + '\n' + (meta.bodyPrepend || ''),
70
+ '<!--body-tags-open-->': meta.bodyTagsOpen || '',
71
+ '<!--body-tags-->': meta.bodyTags || '',
70
72
  '<!--app-html-->': appHtml,
71
- '<!--app-data-->': (meta.bodyAppend || '') + '\n' + appDataScript
73
+ '<!--app-data-->': appDataScript
72
74
  })
73
75
 
74
76
  return { html, response }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/server",
3
- "version": "0.7.24",
3
+ "version": "0.7.26",
4
4
  "description": "Live Change Framework - server",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -23,21 +23,20 @@
23
23
  "dependencies": {
24
24
  "@live-change/dao": "0.5.19",
25
25
  "@live-change/dao-sockjs": "0.5.19",
26
- "@live-change/db-server": "0.6.7",
27
- "@live-change/framework": "^0.7.24",
26
+ "@live-change/db-server": "0.6.11",
27
+ "@live-change/framework": "^0.7.26",
28
28
  "@live-change/sockjs": "0.4.1",
29
- "@live-change/uid": "^0.7.24",
29
+ "@live-change/uid": "^0.7.26",
30
30
  "dotenv": "^16.0.1",
31
31
  "express": "^4.18.1",
32
32
  "express-static-gzip": "2.1.7",
33
33
  "http-proxy-middleware": "2.0.6",
34
34
  "resolve": "^1.22.1",
35
- "segfault-handler": "^1.3.0",
36
35
  "serialize-javascript": "^6.0.0",
37
36
  "sitemap": "^7.1.1",
38
37
  "vite": "^2.9.6",
39
38
  "websocket": "^1.0.34",
40
39
  "yargs": "^17.5.1"
41
40
  },
42
- "gitHead": "21b98bfd8e1785bce51c2fede33742cc1a09e0ff"
41
+ "gitHead": "520b9fa08ca1ea5ddef669713b936c4616c95d41"
43
42
  }