cayo 0.9.9 → 0.9.10

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 +1 -1
  2. package/package.json +1 -1
package/lib/renderer.js CHANGED
@@ -13,7 +13,7 @@ export class Renderer {
13
13
  const { html, css, head } = Component.render();
14
14
 
15
15
  // TODO: template function for page title
16
- let title = page.meta.title ? `${page.meta.title} — Cayo` : 'Cayo';
16
+ let title = page.meta.title ? `${page.meta.title}` : 'Cayo';
17
17
 
18
18
  let cssTag = '';
19
19
  if (cssOptions.internal === false) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cayo",
3
- "version": "0.9.9",
3
+ "version": "0.9.10",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "start": "node cayo dev --projectRoot test"