create-qwik 0.0.110 → 0.0.113

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-qwik",
3
- "version": "0.0.110",
3
+ "version": "0.0.113",
4
4
  "description": "Interactive CLI for create Qwik projects and adding features.",
5
5
  "bin": "./create-qwik.cjs",
6
6
  "main": "./index.cjs",
@@ -15,13 +15,13 @@
15
15
  "qwik": "qwik"
16
16
  },
17
17
  "devDependencies": {
18
- "@builder.io/qwik": "0.0.110",
18
+ "@builder.io/qwik": "0.0.113",
19
19
  "@builder.io/qwik-city": "0.0.111",
20
20
  "@types/eslint": "8.4.6",
21
21
  "@types/node": "latest",
22
22
  "@typescript-eslint/eslint-plugin": "5.37.0",
23
23
  "@typescript-eslint/parser": "5.37.0",
24
- "eslint-plugin-qwik": "0.0.110",
24
+ "eslint-plugin-qwik": "0.0.113",
25
25
  "eslint": "8.23.1",
26
26
  "node-fetch": "3.2.10",
27
27
  "prettier": "2.7.1",
@@ -1,5 +1,5 @@
1
1
  import { component$, useClientEffect$, useStore, useStylesScoped$ } from '@builder.io/qwik';
2
- import { useLocation } from '@builder.io/qwik-city';
2
+ import { DocumentHead, useLocation } from '@builder.io/qwik-city';
3
3
  import styles from './flower.css?inline';
4
4
 
5
5
  export default component$(() => {
@@ -52,3 +52,7 @@ export default component$(() => {
52
52
  </>
53
53
  );
54
54
  });
55
+
56
+ export const head: DocumentHead = {
57
+ title: 'Qwik Flower',
58
+ };