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/index.cjs +36 -36
- package/package.json +1 -1
- package/starters/apps/base/package.json +3 -3
- package/starters/apps/base/public/manifest.json +9 -0
- package/starters/apps/base/vite.config.ts +5 -0
- package/starters/apps/basic/package.json +6 -2
- package/starters/apps/basic/src/root.tsx +1 -0
- package/starters/apps/documentation-site/package.json +8 -4
- package/starters/apps/library/package.json +10 -5
package/package.json
CHANGED
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"qwik": "qwik"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@builder.io/qwik": "0.11.1-
|
|
19
|
-
"@builder.io/qwik-city": "0.0.
|
|
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-
|
|
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",
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qwik-basic-starter",
|
|
3
|
-
"description": "
|
|
3
|
+
"description": "App with Routing built-in (recommended)",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"__qwik__": {
|
|
6
6
|
"priority": 1,
|
|
7
|
-
"
|
|
7
|
+
"displayName": "Basic App (QwikCity)",
|
|
8
|
+
"qwikCity": true,
|
|
9
|
+
"docs": [
|
|
10
|
+
"https://qwik.builder.io/docs/overview/"
|
|
11
|
+
]
|
|
8
12
|
}
|
|
9
13
|
}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qwik-docs-starter",
|
|
3
|
-
"description": "
|
|
3
|
+
"description": "Basic start point to build a docs site with Qwik",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"__qwik__": {
|
|
5
6
|
"priority": 0,
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
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.
|
|
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
|
|
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
|
-
"
|
|
50
|
+
"displayName": "Component library",
|
|
51
|
+
"priority": -1,
|
|
52
|
+
"docs": [
|
|
53
|
+
"https://qwik.builder.io/docs/overview/"
|
|
54
|
+
]
|
|
50
55
|
}
|
|
51
56
|
}
|