create-qwik 0.18.1 → 0.19.1
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 +81 -118
- package/package.json +4 -6
- package/starters/apps/base/gitignore +1 -1
- package/starters/apps/base/package.json +13 -10
- package/starters/apps/basic/src/global.css +4 -5
- package/starters/apps/basic/src/routes/todolist/index.tsx +1 -1
- package/starters/apps/library/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-qwik",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.1",
|
|
4
4
|
"description": "Interactive CLI for create Qwik projects and adding features.",
|
|
5
5
|
"bin": "./create-qwik.cjs",
|
|
6
6
|
"main": "./index.cjs",
|
|
@@ -28,13 +28,11 @@
|
|
|
28
28
|
"url": "https://github.com/BuilderIO/qwik/issues"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@
|
|
32
|
-
"kleur": "4.1.5"
|
|
33
|
-
"ora": "^6.1.2",
|
|
34
|
-
"prompts": "2.4.2"
|
|
31
|
+
"@clack/prompts": "^0.5.0",
|
|
32
|
+
"kleur": "4.1.5"
|
|
35
33
|
},
|
|
36
34
|
"engines": {
|
|
37
|
-
"node": ">=16",
|
|
35
|
+
"node": ">=16.8.0 <18.0.0 || >=18.11",
|
|
38
36
|
"npm": ">=6.0.0"
|
|
39
37
|
}
|
|
40
38
|
}
|
|
@@ -16,21 +16,24 @@
|
|
|
16
16
|
"qwik": "qwik"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@builder.io/qwik": "0.
|
|
20
|
-
"@builder.io/qwik-city": "0.
|
|
21
|
-
"@types/eslint": "8.21.
|
|
22
|
-
"@types/node": "^18.
|
|
19
|
+
"@builder.io/qwik": "0.19.1",
|
|
20
|
+
"@builder.io/qwik-city": "0.4.0",
|
|
21
|
+
"@types/eslint": "8.21.1",
|
|
22
|
+
"@types/node": "^18.14.0",
|
|
23
23
|
"@types/node-fetch": "latest",
|
|
24
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
25
|
-
"@typescript-eslint/parser": "5.
|
|
26
|
-
"eslint-plugin-qwik": "0.
|
|
27
|
-
"eslint": "8.
|
|
24
|
+
"@typescript-eslint/eslint-plugin": "5.53.0",
|
|
25
|
+
"@typescript-eslint/parser": "5.53.0",
|
|
26
|
+
"eslint-plugin-qwik": "0.19.1",
|
|
27
|
+
"eslint": "8.34.0",
|
|
28
28
|
"node-fetch": "3.3.0",
|
|
29
|
-
"undici": "5.
|
|
29
|
+
"undici": "5.20.0",
|
|
30
30
|
"prettier": "2.8.4",
|
|
31
31
|
"typescript": "4.9.5",
|
|
32
|
-
"vite": "4.1.
|
|
32
|
+
"vite": "4.1.4",
|
|
33
33
|
"vite-tsconfig-paths": "3.5.0"
|
|
34
34
|
},
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=16.8.0 <18.0.0 || >=18.11"
|
|
37
|
+
},
|
|
35
38
|
"private": true
|
|
36
39
|
}
|
|
@@ -106,14 +106,14 @@ a.todolist {
|
|
|
106
106
|
margin: 10px auto;
|
|
107
107
|
display: block;
|
|
108
108
|
background: var(--qwik-dark-purple);
|
|
109
|
-
padding: 10px 20px;
|
|
109
|
+
padding: 10px 20px 14px;
|
|
110
110
|
border-radius: 10px;
|
|
111
111
|
border: 0;
|
|
112
112
|
color: white;
|
|
113
113
|
text-decoration: none;
|
|
114
114
|
font-size: 20px;
|
|
115
115
|
width: fit-content;
|
|
116
|
-
|
|
116
|
+
box-shadow: inset 0px -4px 0px black;
|
|
117
117
|
cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🤯</text></svg>")
|
|
118
118
|
16 0,
|
|
119
119
|
auto; /*!emojicursor.app*/
|
|
@@ -121,7 +121,6 @@ a.todolist {
|
|
|
121
121
|
|
|
122
122
|
a.mindblow:hover,
|
|
123
123
|
a.todolist:hover {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
transform: translateY(4px);
|
|
124
|
+
box-shadow: inset 0px 4px 0px white;
|
|
125
|
+
padding: 14px 20px 10px;
|
|
127
126
|
}
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
"release": "np"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@builder.io/qwik": "0.
|
|
36
|
-
"@types/eslint": "8.21.
|
|
37
|
-
"@types/node": "^18.
|
|
35
|
+
"@builder.io/qwik": "0.19.1",
|
|
36
|
+
"@types/eslint": "8.21.1",
|
|
37
|
+
"@types/node": "^18.14.0",
|
|
38
38
|
"@types/node-fetch": "latest",
|
|
39
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
40
|
-
"@typescript-eslint/parser": "5.
|
|
39
|
+
"@typescript-eslint/eslint-plugin": "5.53.0",
|
|
40
|
+
"@typescript-eslint/parser": "5.53.0",
|
|
41
41
|
"eslint-plugin-qwik": "latest",
|
|
42
|
-
"eslint": "8.
|
|
42
|
+
"eslint": "8.34.0",
|
|
43
43
|
"node-fetch": "3.3.0",
|
|
44
|
-
"undici": "5.
|
|
44
|
+
"undici": "5.20.0",
|
|
45
45
|
"np": "7.6.1",
|
|
46
46
|
"prettier": "2.8.4",
|
|
47
47
|
"typescript": "4.9.5",
|
|
48
|
-
"vite": "4.1.
|
|
48
|
+
"vite": "4.1.4"
|
|
49
49
|
},
|
|
50
50
|
"__qwik__": {
|
|
51
51
|
"displayName": "Component library",
|