create-qwik 0.11.1-dev20221020180233 → 0.11.1-dev20221021131556

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.11.1-dev20221020180233",
3
+ "version": "0.11.1-dev20221021131556",
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.11.1-dev20221020180233",
19
- "@builder.io/qwik-city": "0.0.113",
18
+ "@builder.io/qwik": "0.11.1-dev20221021131556",
19
+ "@builder.io/qwik-city": "0.0.115",
20
20
  "@types/eslint": "8.4.6",
21
21
  "@types/node": "latest",
22
22
  "@typescript-eslint/eslint-plugin": "5.40.1",
23
23
  "@typescript-eslint/parser": "5.40.1",
24
- "eslint-plugin-qwik": "0.11.1-dev20221020180233",
24
+ "eslint-plugin-qwik": "0.11.1-dev20221021131556",
25
25
  "eslint": "8.25.0",
26
26
  "node-fetch": "3.2.10",
27
27
  "prettier": "2.7.1",
@@ -0,0 +1,9 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/web-manifest-combined.json",
3
+ "name": "qwik-project-name",
4
+ "short_name": "Welcome to Qwik",
5
+ "start_url": ".",
6
+ "display": "standalone",
7
+ "background_color": "#fff",
8
+ "description": "A Qwik project app."
9
+ }
@@ -6,5 +6,10 @@ import tsconfigPaths from 'vite-tsconfig-paths';
6
6
  export default defineConfig(() => {
7
7
  return {
8
8
  plugins: [qwikCity(), qwikVite(), tsconfigPaths()],
9
+ preview: {
10
+ headers: {
11
+ 'Cache-Control': 'public, max-age=600',
12
+ },
13
+ },
9
14
  };
10
15
  });
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "qwik-basic-starter",
3
- "description": "Recommended for your first Qwik app (comes with Qwik City)",
3
+ "description": "App with Routing built-in (recommended)",
4
4
  "type": "module",
5
5
  "__qwik__": {
6
6
  "priority": 1,
7
- "qwikCity": true
7
+ "displayName": "Basic App (QwikCity)",
8
+ "qwikCity": true,
9
+ "docs": [
10
+ "https://qwik.builder.io/docs/overview/"
11
+ ]
8
12
  }
9
13
  }
@@ -17,6 +17,7 @@ export default component$(() => {
17
17
  <QwikCity>
18
18
  <head>
19
19
  <meta charSet="utf-8" />
20
+ <link rel="manifest" href="/manifest.json" />
20
21
  <RouterHead />
21
22
  </head>
22
23
  <body lang="en">
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "qwik-docs-starter",
3
- "description": "Documentation site starter",
3
+ "description": "Basic start point to build a docs site with Qwik",
4
+ "type": "module",
4
5
  "__qwik__": {
5
6
  "priority": 0,
6
- "qwikCity": true
7
- },
8
- "type": "module"
7
+ "displayName": "Documentation site (QwikCity)",
8
+ "qwikCity": true,
9
+ "docs": [
10
+ "https://qwik.builder.io/docs/overview/"
11
+ ]
12
+ }
9
13
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "qwik-library-name",
3
- "description": "Create a component library",
3
+ "description": "Create a reusable Qwik component library",
4
4
  "version": "0.0.1",
5
5
  "private": false,
6
- "main": "./lib/index.qwik.cjs",
6
+ "main": "./lib/index.qwik.mjs",
7
7
  "qwik": "./lib/index.qwik.mjs",
8
8
  "module": "./lib/index.qwik.mjs",
9
9
  "types": "./lib-types/index.d.ts",
@@ -11,7 +11,8 @@
11
11
  "exports": {
12
12
  ".": {
13
13
  "import": "./lib/index.qwik.mjs",
14
- "require": "./lib/index.qwik.cjs"
14
+ "require": "./lib/index.qwik.cjs",
15
+ "types": "./lib-types/index.d.ts"
15
16
  }
16
17
  },
17
18
  "files": [
@@ -26,7 +27,7 @@
26
27
  "dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
27
28
  "fmt": "prettier --write .",
28
29
  "fmt.check": "prettier --check .",
29
- "lint": "eslint \"src/**/*.ts*\"",
30
+ "lint": "eslint src/**/*.ts*",
30
31
  "start": "vite --open --mode ssr",
31
32
  "qwik": "qwik",
32
33
  "release": "np"
@@ -46,6 +47,10 @@
46
47
  "vite": "3.1.8"
47
48
  },
48
49
  "__qwik__": {
49
- "priority": -1
50
+ "displayName": "Component library",
51
+ "priority": -1,
52
+ "docs": [
53
+ "https://qwik.builder.io/docs/overview/"
54
+ ]
50
55
  }
51
56
  }