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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-qwik",
3
- "version": "0.18.1",
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
- "@types/prompts": "2.4.2",
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
  }
@@ -10,7 +10,6 @@ node_modules
10
10
  # Cache
11
11
  .cache
12
12
  .mf
13
- .vscode
14
13
  .rollup.cache
15
14
  tsconfig.tsbuildinfo
16
15
 
@@ -24,6 +23,7 @@ pnpm-debug.log*
24
23
  lerna-debug.log*
25
24
 
26
25
  # Editor
26
+ .vscode/*
27
27
  !.vscode/extensions.json
28
28
  .idea
29
29
  .DS_Store
@@ -16,21 +16,24 @@
16
16
  "qwik": "qwik"
17
17
  },
18
18
  "devDependencies": {
19
- "@builder.io/qwik": "0.18.1",
20
- "@builder.io/qwik-city": "0.2.1",
21
- "@types/eslint": "8.21.0",
22
- "@types/node": "^18.13.0",
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.51.0",
25
- "@typescript-eslint/parser": "5.51.0",
26
- "eslint-plugin-qwik": "0.18.1",
27
- "eslint": "8.33.0",
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.18.0",
29
+ "undici": "5.20.0",
30
30
  "prettier": "2.8.4",
31
31
  "typescript": "4.9.5",
32
- "vite": "4.1.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
- border-bottom: 4px solid black;
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
- border-bottom-width: 0px;
125
- margin-bottom: 4px;
126
- transform: translateY(4px);
124
+ box-shadow: inset 0px 4px 0px white;
125
+ padding: 14px 20px 10px;
127
126
  }
@@ -45,5 +45,5 @@ export default component$(() => {
45
45
  });
46
46
 
47
47
  export const head: DocumentHead = {
48
- title: 'Qwik Flower',
48
+ title: 'Qwik To-Do',
49
49
  };
@@ -32,20 +32,20 @@
32
32
  "release": "np"
33
33
  },
34
34
  "devDependencies": {
35
- "@builder.io/qwik": "0.18.1",
36
- "@types/eslint": "8.21.0",
37
- "@types/node": "^18.13.0",
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.51.0",
40
- "@typescript-eslint/parser": "5.51.0",
39
+ "@typescript-eslint/eslint-plugin": "5.53.0",
40
+ "@typescript-eslint/parser": "5.53.0",
41
41
  "eslint-plugin-qwik": "latest",
42
- "eslint": "8.33.0",
42
+ "eslint": "8.34.0",
43
43
  "node-fetch": "3.3.0",
44
- "undici": "5.18.0",
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.1"
48
+ "vite": "4.1.4"
49
49
  },
50
50
  "__qwik__": {
51
51
  "displayName": "Component library",