create-qwik 0.20.1 → 0.22.0-dev20230314171944
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 +79 -86
- package/package.json +2 -2
- package/starters/apps/base/.vscode/qwik.code-snippets +2 -2
- package/starters/apps/base/package.json +9 -9
- package/starters/apps/basic/src/components/counter/counter.css +19 -0
- package/starters/apps/basic/src/components/counter/counter.tsx +15 -0
- package/starters/apps/basic/src/components/footer/footer.css +11 -0
- package/starters/apps/basic/src/components/footer/footer.tsx +16 -0
- package/starters/apps/basic/src/components/header/header.css +5 -6
- package/starters/apps/basic/src/components/header/header.tsx +1 -1
- package/starters/apps/basic/src/components/hero/hero.css +15 -0
- package/starters/apps/basic/src/components/hero/hero.tsx +55 -0
- package/starters/apps/basic/src/components/icons/qwik.tsx +4 -4
- package/starters/apps/basic/src/components/infobox/infobox.css +12 -0
- package/starters/apps/basic/src/components/infobox/infobox.tsx +14 -0
- package/starters/apps/basic/src/components/router-head/router-head.tsx +1 -1
- package/starters/apps/basic/src/components/starter/starter.css +13 -0
- package/starters/apps/basic/src/components/starter/starter.tsx +93 -0
- package/starters/apps/basic/src/global.css +102 -71
- package/starters/apps/basic/src/root.tsx +2 -0
- package/starters/apps/basic/src/routes/flower/index.tsx +33 -31
- package/starters/apps/basic/src/routes/index.tsx +94 -137
- package/starters/apps/basic/src/routes/layout.tsx +11 -13
- package/starters/apps/basic/src/routes/service-worker.ts +18 -0
- package/starters/apps/basic/src/routes/todolist/index.tsx +41 -16
- package/starters/apps/basic/src/routes/todolist/todolist.css +13 -0
- package/starters/apps/documentation-site/src/components/breadcrumbs/breadcrumbs.tsx +1 -1
- package/starters/apps/documentation-site/src/components/header/header.tsx +3 -3
- package/starters/apps/documentation-site/src/components/menu/menu.tsx +1 -1
- package/starters/apps/documentation-site/src/components/on-this-page/on-this-page.tsx +2 -2
- package/starters/apps/library/package.json +7 -7
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { component$,
|
|
1
|
+
import { component$, useVisibleTask$, useStore, useStylesScoped$ } from '@builder.io/qwik';
|
|
2
2
|
import { type DocumentHead, useLocation } from '@builder.io/qwik-city';
|
|
3
3
|
import styles from './flower.css?inline';
|
|
4
4
|
|
|
@@ -11,7 +11,7 @@ export default component$(() => {
|
|
|
11
11
|
number: 20,
|
|
12
12
|
});
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
useVisibleTask$(({ cleanup }) => {
|
|
15
15
|
const timeout = setTimeout(() => (state.count = 1), 500);
|
|
16
16
|
cleanup(() => clearTimeout(timeout));
|
|
17
17
|
|
|
@@ -20,36 +20,38 @@ export default component$(() => {
|
|
|
20
20
|
});
|
|
21
21
|
|
|
22
22
|
return (
|
|
23
|
-
|
|
24
|
-
<
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
23
|
+
<div class="section">
|
|
24
|
+
<div class="container center">
|
|
25
|
+
<input
|
|
26
|
+
type="range"
|
|
27
|
+
value={state.number}
|
|
28
|
+
max={50}
|
|
29
|
+
onInput$={(ev) => {
|
|
30
|
+
state.number = (ev.target as HTMLInputElement).valueAsNumber;
|
|
31
|
+
}}
|
|
32
|
+
/>
|
|
33
|
+
<div
|
|
34
|
+
style={{
|
|
35
|
+
'--state': `${state.count * 0.1}`,
|
|
36
|
+
}}
|
|
37
|
+
class={{
|
|
38
|
+
host: true,
|
|
39
|
+
pride: loc.query.get('pride') === 'true',
|
|
40
|
+
}}
|
|
41
|
+
>
|
|
42
|
+
{Array.from({ length: state.number }, (_, i) => (
|
|
43
|
+
<div
|
|
44
|
+
key={i}
|
|
45
|
+
class={{
|
|
46
|
+
square: true,
|
|
47
|
+
odd: i % 2 === 0,
|
|
48
|
+
}}
|
|
49
|
+
style={{ '--index': `${i + 1}` }}
|
|
50
|
+
/>
|
|
51
|
+
)).reverse()}
|
|
52
|
+
</div>
|
|
51
53
|
</div>
|
|
52
|
-
|
|
54
|
+
</div>
|
|
53
55
|
);
|
|
54
56
|
});
|
|
55
57
|
|
|
@@ -1,150 +1,107 @@
|
|
|
1
1
|
import { component$ } from '@builder.io/qwik';
|
|
2
2
|
import type { DocumentHead } from '@builder.io/qwik-city';
|
|
3
|
-
import
|
|
3
|
+
import Counter from '~/components/counter/counter';
|
|
4
|
+
import Hero from '~/components/hero/hero';
|
|
5
|
+
import Infobox from '~/components/infobox/infobox';
|
|
6
|
+
import Starter from '~/components/starter/starter';
|
|
4
7
|
|
|
5
8
|
export default component$(() => {
|
|
6
9
|
return (
|
|
7
|
-
|
|
8
|
-
<
|
|
9
|
-
Welcome to Qwik <span class="lightning">⚡️</span>
|
|
10
|
-
</h1>
|
|
10
|
+
<>
|
|
11
|
+
<Hero />
|
|
11
12
|
|
|
12
|
-
<
|
|
13
|
-
<
|
|
14
|
-
|
|
15
|
-
</
|
|
16
|
-
|
|
17
|
-
Add integrations with <code>npm run qwik add</code>.
|
|
18
|
-
</li>
|
|
19
|
-
<li>
|
|
20
|
-
More info about development in <code>README.md</code>
|
|
21
|
-
</li>
|
|
22
|
-
</ul>
|
|
13
|
+
<div class="section bright">
|
|
14
|
+
<div class="container center">
|
|
15
|
+
<Starter />
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
23
18
|
|
|
24
|
-
<
|
|
19
|
+
<div class="section">
|
|
20
|
+
<div class="container center">
|
|
21
|
+
<h3>
|
|
22
|
+
You can <b>count</b> on me
|
|
23
|
+
</h3>
|
|
24
|
+
<Counter />
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
25
27
|
|
|
26
|
-
<
|
|
27
|
-
<
|
|
28
|
-
<
|
|
29
|
-
<
|
|
30
|
-
|
|
31
|
-
</
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
<
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
28
|
+
<div class="section">
|
|
29
|
+
<div class="container topics">
|
|
30
|
+
<Infobox>
|
|
31
|
+
<div q:slot="title" class="icon icon-cli">
|
|
32
|
+
CLI Commands
|
|
33
|
+
</div>
|
|
34
|
+
<>
|
|
35
|
+
<p>
|
|
36
|
+
<code>npm run dev</code>
|
|
37
|
+
<br />
|
|
38
|
+
Starts the development server and watches for changes
|
|
39
|
+
</p>
|
|
40
|
+
<p>
|
|
41
|
+
<code>npm run preview</code>
|
|
42
|
+
<br />
|
|
43
|
+
Creates production build and starts a server to preview it
|
|
44
|
+
</p>
|
|
45
|
+
<p>
|
|
46
|
+
<code>npm run build</code>
|
|
47
|
+
<br />
|
|
48
|
+
Creates production build
|
|
49
|
+
</p>
|
|
50
|
+
<p>
|
|
51
|
+
<code>npm run qwik add</code>
|
|
52
|
+
<br />
|
|
53
|
+
Runs the qwik CLI to add integrations
|
|
54
|
+
</p>
|
|
55
|
+
</>
|
|
56
|
+
</Infobox>
|
|
54
57
|
|
|
55
|
-
|
|
58
|
+
<div>
|
|
59
|
+
<Infobox>
|
|
60
|
+
<div q:slot="title" class="icon icon-apps">
|
|
61
|
+
Example Apps
|
|
62
|
+
</div>
|
|
63
|
+
<p>
|
|
64
|
+
Have a look at the <a href="/flower">React Flower App</a> or the{' '}
|
|
65
|
+
<a href="/todolist">Todo App</a>.
|
|
66
|
+
</p>
|
|
67
|
+
</Infobox>
|
|
56
68
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
<
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
<td>
|
|
94
|
-
<a href="https://docs.netlify.com/" target="_blank">
|
|
95
|
-
Netlify Edge Functions
|
|
96
|
-
</a>
|
|
97
|
-
</td>
|
|
98
|
-
</tr>
|
|
99
|
-
<tr>
|
|
100
|
-
<td>
|
|
101
|
-
<code>npm run qwik add vercel-edge</code>
|
|
102
|
-
</td>
|
|
103
|
-
<td>
|
|
104
|
-
<a href="https://vercel.com/docs/concepts/get-started" target="_blank">
|
|
105
|
-
Vercel Edge Functions
|
|
106
|
-
</a>
|
|
107
|
-
</td>
|
|
108
|
-
</tr>
|
|
109
|
-
</tbody>
|
|
110
|
-
</table>
|
|
111
|
-
|
|
112
|
-
<h2>Community</h2>
|
|
113
|
-
|
|
114
|
-
<ul>
|
|
115
|
-
<li>
|
|
116
|
-
<span>Questions or just want to say hi? </span>
|
|
117
|
-
<a href="https://qwik.builder.io/chat" target="_blank">
|
|
118
|
-
Chat on discord!
|
|
119
|
-
</a>
|
|
120
|
-
</li>
|
|
121
|
-
<li>
|
|
122
|
-
<span>Follow </span>
|
|
123
|
-
<a href="https://twitter.com/QwikDev" target="_blank">
|
|
124
|
-
@QwikDev
|
|
125
|
-
</a>
|
|
126
|
-
<span> on Twitter</span>
|
|
127
|
-
</li>
|
|
128
|
-
<li>
|
|
129
|
-
<span>Open issues and contribute on </span>
|
|
130
|
-
<a href="https://github.com/BuilderIO/qwik" target="_blank">
|
|
131
|
-
GitHub
|
|
132
|
-
</a>
|
|
133
|
-
</li>
|
|
134
|
-
<li>
|
|
135
|
-
<span>Watch </span>
|
|
136
|
-
<a href="https://qwik.builder.io/media/" target="_blank">
|
|
137
|
-
Presentations, Podcasts, Videos, etc.
|
|
138
|
-
</a>
|
|
139
|
-
</li>
|
|
140
|
-
</ul>
|
|
141
|
-
<Link class="mindblow" href="/flower/">
|
|
142
|
-
Blow my mind 🤯
|
|
143
|
-
</Link>
|
|
144
|
-
<Link class="todolist" href="/todolist/">
|
|
145
|
-
TODO demo 📝
|
|
146
|
-
</Link>
|
|
147
|
-
</div>
|
|
69
|
+
<Infobox>
|
|
70
|
+
<div q:slot="title" class="icon icon-community">
|
|
71
|
+
Community
|
|
72
|
+
</div>
|
|
73
|
+
<ul>
|
|
74
|
+
<li>
|
|
75
|
+
<span>Questions or just want to say hi? </span>
|
|
76
|
+
<a href="https://qwik.builder.io/chat" target="_blank">
|
|
77
|
+
Chat on discord!
|
|
78
|
+
</a>
|
|
79
|
+
</li>
|
|
80
|
+
<li>
|
|
81
|
+
<span>Follow </span>
|
|
82
|
+
<a href="https://twitter.com/QwikDev" target="_blank">
|
|
83
|
+
@QwikDev
|
|
84
|
+
</a>
|
|
85
|
+
<span> on Twitter</span>
|
|
86
|
+
</li>
|
|
87
|
+
<li>
|
|
88
|
+
<span>Open issues and contribute on </span>
|
|
89
|
+
<a href="https://github.com/BuilderIO/qwik" target="_blank">
|
|
90
|
+
GitHub
|
|
91
|
+
</a>
|
|
92
|
+
</li>
|
|
93
|
+
<li>
|
|
94
|
+
<span>Watch </span>
|
|
95
|
+
<a href="https://qwik.builder.io/media/" target="_blank">
|
|
96
|
+
Presentations, Podcasts, Videos, etc.
|
|
97
|
+
</a>
|
|
98
|
+
</li>
|
|
99
|
+
</ul>
|
|
100
|
+
</Infobox>
|
|
101
|
+
</div>
|
|
102
|
+
</div>
|
|
103
|
+
</div>
|
|
104
|
+
</>
|
|
148
105
|
);
|
|
149
106
|
});
|
|
150
107
|
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { component$, Slot } from '@builder.io/qwik';
|
|
2
|
-
import {
|
|
2
|
+
import { routeLoader$ } from '@builder.io/qwik-city';
|
|
3
3
|
|
|
4
4
|
import Header from '../components/header/header';
|
|
5
|
+
import Footer from '~/components/footer/footer';
|
|
5
6
|
|
|
6
|
-
export const useServerTimeLoader =
|
|
7
|
+
export const useServerTimeLoader = routeLoader$(() => {
|
|
7
8
|
return {
|
|
8
9
|
date: new Date().toISOString(),
|
|
9
10
|
};
|
|
@@ -12,19 +13,16 @@ export const useServerTimeLoader = loader$(() => {
|
|
|
12
13
|
export default component$(() => {
|
|
13
14
|
const serverTime = useServerTimeLoader();
|
|
14
15
|
return (
|
|
15
|
-
|
|
16
|
+
<div class="page">
|
|
16
17
|
<main>
|
|
17
18
|
<Header />
|
|
18
|
-
<
|
|
19
|
-
<Slot />
|
|
20
|
-
</section>
|
|
19
|
+
<Slot />
|
|
21
20
|
</main>
|
|
22
|
-
<
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
</>
|
|
21
|
+
<div class="section dark">
|
|
22
|
+
<div class="container">
|
|
23
|
+
<Footer serverTime={serverTime} />
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
29
27
|
);
|
|
30
28
|
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* WHAT IS THIS FILE?
|
|
3
|
+
*
|
|
4
|
+
* The service-worker.ts file is used to have state of the art prefetching.
|
|
5
|
+
* https://qwik.builder.io/qwikcity/prefetching/overview/
|
|
6
|
+
*
|
|
7
|
+
* Qwik uses a service worker to speed up your site and reduce latency, ie, not used in the traditional way of offline.
|
|
8
|
+
* You can also use this file to add more functionality that runs in the service worker.
|
|
9
|
+
*/
|
|
10
|
+
import { setupServiceWorker } from '@builder.io/qwik-city/service-worker';
|
|
11
|
+
|
|
12
|
+
setupServiceWorker();
|
|
13
|
+
|
|
14
|
+
addEventListener('install', () => self.skipWaiting());
|
|
15
|
+
|
|
16
|
+
addEventListener('activate', () => self.clients.claim());
|
|
17
|
+
|
|
18
|
+
declare const self: ServiceWorkerGlobalScope;
|
|
@@ -1,5 +1,13 @@
|
|
|
1
|
-
import { component$ } from '@builder.io/qwik';
|
|
2
|
-
import {
|
|
1
|
+
import { component$, useStylesScoped$ } from '@builder.io/qwik';
|
|
2
|
+
import {
|
|
3
|
+
type DocumentHead,
|
|
4
|
+
routeLoader$,
|
|
5
|
+
globalAction$,
|
|
6
|
+
zod$,
|
|
7
|
+
z,
|
|
8
|
+
Form,
|
|
9
|
+
} from '@builder.io/qwik-city';
|
|
10
|
+
import style from './todolist.css?inline';
|
|
3
11
|
|
|
4
12
|
interface ListItem {
|
|
5
13
|
text: string;
|
|
@@ -7,11 +15,11 @@ interface ListItem {
|
|
|
7
15
|
|
|
8
16
|
export const list: ListItem[] = [];
|
|
9
17
|
|
|
10
|
-
export const useListLoader =
|
|
18
|
+
export const useListLoader = routeLoader$(() => {
|
|
11
19
|
return list;
|
|
12
20
|
});
|
|
13
21
|
|
|
14
|
-
export const useAddToListAction =
|
|
22
|
+
export const useAddToListAction = globalAction$(
|
|
15
23
|
(item) => {
|
|
16
24
|
list.push(item);
|
|
17
25
|
return {
|
|
@@ -24,26 +32,43 @@ export const useAddToListAction = action$(
|
|
|
24
32
|
);
|
|
25
33
|
|
|
26
34
|
export default component$(() => {
|
|
35
|
+
useStylesScoped$(style);
|
|
27
36
|
const list = useListLoader();
|
|
28
37
|
const action = useAddToListAction();
|
|
29
38
|
|
|
30
39
|
return (
|
|
31
40
|
<>
|
|
32
|
-
<
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
<
|
|
39
|
-
<
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
<div class="section">
|
|
42
|
+
<div class="container center">
|
|
43
|
+
<h1 class="hero">TODO List</h1>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
|
|
47
|
+
<div class="section bright">
|
|
48
|
+
<div class="container center mh-300">
|
|
49
|
+
{(list.value.length && (
|
|
50
|
+
<ul class="list">
|
|
51
|
+
{list.value.map((item, index) => (
|
|
52
|
+
<li key={`items-${index}`}>{item.text}</li>
|
|
53
|
+
))}
|
|
54
|
+
</ul>
|
|
55
|
+
)) || <span class="no-content">No items found</span>}
|
|
56
|
+
</div>
|
|
57
|
+
</div>
|
|
58
|
+
|
|
59
|
+
<div class="section">
|
|
60
|
+
<div class="container center">
|
|
61
|
+
<Form action={action} spaReset>
|
|
62
|
+
<input type="text" name="text" required /> <button type="submit">Add item</button>
|
|
63
|
+
</Form>
|
|
64
|
+
|
|
65
|
+
<p class="hint">PS: This little app works even when JavaScript is disabled.</p>
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
|
43
68
|
</>
|
|
44
69
|
);
|
|
45
70
|
});
|
|
46
71
|
|
|
47
72
|
export const head: DocumentHead = {
|
|
48
|
-
title: 'Qwik
|
|
73
|
+
title: 'Qwik Todo List',
|
|
49
74
|
};
|
|
@@ -8,7 +8,7 @@ export const Breadcrumbs = component$(() => {
|
|
|
8
8
|
const { menu } = useContent();
|
|
9
9
|
const loc = useLocation();
|
|
10
10
|
|
|
11
|
-
const breadcrumbs = createBreadcrumbs(menu, loc.pathname);
|
|
11
|
+
const breadcrumbs = createBreadcrumbs(menu, loc.url.pathname);
|
|
12
12
|
if (breadcrumbs.length === 0) {
|
|
13
13
|
return null;
|
|
14
14
|
}
|
|
@@ -6,7 +6,7 @@ import styles from './header.css?inline';
|
|
|
6
6
|
export default component$(() => {
|
|
7
7
|
useStyles$(styles);
|
|
8
8
|
|
|
9
|
-
const {
|
|
9
|
+
const { url } = useLocation();
|
|
10
10
|
|
|
11
11
|
return (
|
|
12
12
|
<header>
|
|
@@ -14,10 +14,10 @@ export default component$(() => {
|
|
|
14
14
|
<QwikLogo />
|
|
15
15
|
</a>
|
|
16
16
|
<nav>
|
|
17
|
-
<a href="/docs" class={{ active: pathname.startsWith('/docs') }}>
|
|
17
|
+
<a href="/docs" class={{ active: url.pathname.startsWith('/docs') }}>
|
|
18
18
|
Docs
|
|
19
19
|
</a>
|
|
20
|
-
<a href="/about-us" class={{ active: pathname.startsWith('/about-us') }}>
|
|
20
|
+
<a href="/about-us" class={{ active: url.pathname.startsWith('/about-us') }}>
|
|
21
21
|
About Us
|
|
22
22
|
</a>
|
|
23
23
|
</nav>
|
|
@@ -8,8 +8,8 @@ export default component$(() => {
|
|
|
8
8
|
const { headings } = useContent();
|
|
9
9
|
const contentHeadings = headings?.filter((h) => h.level === 2 || h.level === 3) || [];
|
|
10
10
|
|
|
11
|
-
const {
|
|
12
|
-
const editUrl = `#update-your-edit-url-for-${pathname}`;
|
|
11
|
+
const { url } = useLocation();
|
|
12
|
+
const editUrl = `#update-your-edit-url-for-${url.pathname}`;
|
|
13
13
|
|
|
14
14
|
return (
|
|
15
15
|
<aside class="on-this-page">
|
|
@@ -32,16 +32,16 @@
|
|
|
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.22.0",
|
|
36
|
+
"@types/eslint": "8.21.2",
|
|
37
|
+
"@types/node": "^18.15.3",
|
|
38
38
|
"@types/node-fetch": "latest",
|
|
39
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
40
|
-
"@typescript-eslint/parser": "5.
|
|
39
|
+
"@typescript-eslint/eslint-plugin": "5.55.0",
|
|
40
|
+
"@typescript-eslint/parser": "5.55.0",
|
|
41
41
|
"eslint-plugin-qwik": "latest",
|
|
42
|
-
"eslint": "8.
|
|
42
|
+
"eslint": "8.36.0",
|
|
43
43
|
"node-fetch": "3.3.0",
|
|
44
|
-
"undici": "5.
|
|
44
|
+
"undici": "5.21.0",
|
|
45
45
|
"np": "7.6.1",
|
|
46
46
|
"prettier": "2.8.4",
|
|
47
47
|
"typescript": "4.9.5",
|