@@ -5,10 +5,6 @@ import * as yootils from 'yootils';
5
5
import { escape_html , get_depth } from '../../../utils.js' ;
6
6
import { ready } from '../common/index.js' ;
7
7
8
- /**
9
- * @typedef {import("../../../../routes/tutorial/[slug]/state.js").CompilerWarning } CompilerWarning
10
- */
11
-
12
8
const converter = new AnsiToHtml ( {
13
9
fg : 'var(--sk-text-3)'
14
10
} ) ;
@@ -21,7 +17,7 @@ let vm;
21
17
* @param {import('svelte/store').Writable<Error | null> } error
22
18
* @param {import('svelte/store').Writable<{ value: number, text: string }> } progress
23
19
* @param {import('svelte/store').Writable<string[]> } logs
24
- * @param {import('svelte/store').Writable<Record<string, CompilerWarning []>> } warnings
20
+ * @param {import('svelte/store').Writable<Record<string, import('$lib/types').Warning []>> } warnings
25
21
* @returns {Promise<import('$lib/types').Adapter> }
26
22
*/
27
23
export async function create ( base , error , progress , logs , warnings ) {
@@ -48,9 +44,9 @@ export async function create(base, error, progress, logs, warnings) {
48
44
}
49
45
} ) ;
50
46
51
- /** @type {Record<string, CompilerWarning []> } */
47
+ /** @type {Record<string, import('$lib/types').Warning []> } */
52
48
let $warnings ;
53
- warnings . subscribe ( ( value ) => $warnings = value ) ;
49
+ warnings . subscribe ( ( value ) => ( $warnings = value ) ) ;
54
50
55
51
/** @type {any } */
56
52
let timeout ;
@@ -67,21 +63,19 @@ export async function create(base, error, progress, logs, warnings) {
67
63
if ( chunk === '\x1B[1;1H' ) {
68
64
// clear screen
69
65
logs . set ( [ ] ) ;
70
-
71
66
} else if ( chunk ?. startsWith ( 'svelte:warnings:' ) ) {
72
- /** @type {CompilerWarning } */
67
+ /** @type {import('$lib/types').Warning } */
73
68
const warn = JSON . parse ( chunk . slice ( 16 ) ) ;
74
69
const current = $warnings [ warn . filename ] ;
75
70
76
71
if ( ! current ) {
77
72
$warnings [ warn . filename ] = [ warn ] ;
78
- // the exact same warning may be given multiple times in a row
79
- } else if ( ! current . some ( ( s ) => ( s . code === warn . code && s . pos === warn . pos ) ) ) {
73
+ // the exact same warning may be given multiple times in a row
74
+ } else if ( ! current . some ( ( s ) => s . code === warn . code && s . pos === warn . pos ) ) {
80
75
current . push ( warn ) ;
81
76
}
82
77
83
78
schedule_to_update_warning ( 100 ) ;
84
-
85
79
} else {
86
80
const log = converter . toHtml ( escape_html ( chunk ) ) . replace ( / \n / g, '<br>' ) ;
87
81
logs . update ( ( $logs ) => [ ...$logs , log ] ) ;
@@ -179,16 +173,14 @@ export async function create(base, error, progress, logs, warnings) {
179
173
// Don't delete the node_modules folder when switching from one exercise to another
180
174
// where, as this crashes the dev server.
181
175
const to_delete = [
182
- ...Array . from ( current_stubs . keys ( ) ) . filter (
183
- ( s ) => ! s . startsWith ( '/node_modules' )
184
- ) ,
176
+ ...Array . from ( current_stubs . keys ( ) ) . filter ( ( s ) => ! s . startsWith ( '/node_modules' ) ) ,
185
177
...force_delete
186
178
] ;
187
179
188
180
// initialize warnings of written files
189
181
to_write
190
182
. filter ( ( stub ) => stub . type === 'file' && $warnings [ stub . name ] )
191
- . forEach ( ( stub ) => $warnings [ stub . name ] = [ ] ) ;
183
+ . forEach ( ( stub ) => ( $warnings [ stub . name ] = [ ] ) ) ;
192
184
// remove warnings of deleted files
193
185
to_delete
194
186
. filter ( ( stubname ) => $warnings [ stubname ] )
@@ -201,8 +193,8 @@ export async function create(base, error, progress, logs, warnings) {
201
193
// For some reason, server-ready is fired again when the vite dev server is restarted.
202
194
// We need to wait for it to finish before we can continue, else we might
203
195
// request files from Vite before it's ready, leading to a timeout.
204
- const will_restart = launched &&
205
- ( to_write . some ( is_config ) || to_delete . some ( is_config_path ) ) ;
196
+ const will_restart =
197
+ launched && ( to_write . some ( is_config ) || to_delete . some ( is_config_path ) ) ;
206
198
const promise = will_restart ? wait_for_restart_vite ( ) : Promise . resolve ( ) ;
207
199
208
200
for ( const file of to_delete ) {
@@ -223,14 +215,13 @@ export async function create(base, error, progress, logs, warnings) {
223
215
} ) ;
224
216
} ,
225
217
update : ( file ) => {
226
-
227
218
let queue = q_per_file . get ( file . name ) ;
228
219
if ( queue ) {
229
220
queue . push ( file ) ;
230
221
return Promise . resolve ( false ) ;
231
222
}
232
223
233
- q_per_file . set ( file . name , queue = [ file ] ) ;
224
+ q_per_file . set ( file . name , ( queue = [ file ] ) ) ;
234
225
235
226
return q . add ( async ( ) => {
236
227
/** @type {import('@webcontainer/api').FileSystemTree } */
@@ -257,10 +248,9 @@ export async function create(base, error, progress, logs, warnings) {
257
248
const will_restart = is_config ( file ) ;
258
249
259
250
while ( queue && queue . length > 0 ) {
260
-
261
251
// if the file is updated many times rapidly, get the most recently updated one
262
252
const file = /** @type {import('$lib/types').FileStub } */ ( queue . pop ( ) ) ;
263
- queue . length = 0
253
+ queue . length = 0 ;
264
254
265
255
tree [ basename ] = to_file ( file ) ;
266
256
@@ -280,7 +270,7 @@ export async function create(base, error, progress, logs, warnings) {
280
270
await new Promise ( ( f ) => setTimeout ( f , 50 ) ) ;
281
271
}
282
272
283
- q_per_file . delete ( file . name )
273
+ q_per_file . delete ( file . name ) ;
284
274
285
275
return will_restart ;
286
276
} ) ;
0 commit comments