create-qwik 0.0.16-13 → 0.0.16-dev20220301193108

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.16-13",
3
+ "version": "0.0.16-dev20220301193108",
4
4
  "description": "Interactive CLI and API for generating Qwik projects.",
5
5
  "bin": {
6
6
  "create-qwik": "create-qwik"
@@ -13,7 +13,8 @@
13
13
  "start": "npm run dev"
14
14
  },
15
15
  "devDependencies": {
16
- "@builder.io/qwik": "0.0.16-13",
16
+ "@types/node": "17.0.17",
17
+ "@builder.io/qwik": "0.0.16-dev20220301193108",
17
18
  "typescript": "4.5.5",
18
19
  "vite": "2.8.0"
19
20
  },
@@ -1,22 +1,15 @@
1
1
  import { $, component$, Host } from '@builder.io/qwik';
2
2
 
3
- export const Logo = component$(
4
- () => {
5
- return $(() => (
6
- <Host style={{ 'text-align': 'center' }}>
7
- <p style={{ 'text-align': 'center' }}>
8
- <a href="https://github.com/builderio/qwik">
9
- <img
10
- alt="Qwik Logo"
11
- width={400}
12
- src="https://cdn.builder.io/api/v1/image/assets%2FYJIGb4i01jvw0SRdL5Bt%2F667ab6c2283d4c4d878fb9083aacc10f"
13
- />
14
- </a>
15
- </p>
16
- </Host>
17
- ));
18
- },
19
- {
20
- tagName: 'p',
21
- }
22
- );
3
+ export const Logo = component$(() => {
4
+ return $(() => (
5
+ <Host style={{ 'text-align': 'center' }}>
6
+ <a href="https://github.com/builderio/qwik">
7
+ <img
8
+ alt="Qwik Logo"
9
+ width={400}
10
+ src="https://cdn.builder.io/api/v1/image/assets%2FYJIGb4i01jvw0SRdL5Bt%2F667ab6c2283d4c4d878fb9083aacc10f"
11
+ />
12
+ </a>
13
+ </Host>
14
+ ));
15
+ });
@@ -3,6 +3,7 @@
3
3
  // @ts-ignore
4
4
  import { render } from './entry.server';
5
5
 
6
+ // @ts-ignore
6
7
  import symbols from '../server/q-symbols.json';
7
8
 
8
9
  export const qwikSSR = async (req: any) => {
@@ -6,6 +6,7 @@
6
6
  "serve": "node server/build/entry.express.js"
7
7
  },
8
8
  "devDependencies": {
9
+ "@types/express": "4.17.13",
9
10
  "express": "4.17.2"
10
11
  }
11
12
  }