@@ -223,7 +223,7 @@ Use the \`@markdown-file\` directive to include markdown files.
223
223
const result = await Bun . build ( {
224
224
entrypoints : [ template ] ,
225
225
outdir : OUTPUT_DIR ,
226
- plugins : [ stxPlugin ] ,
226
+ plugins : [ stxPlugin ( ) ] ,
227
227
} )
228
228
229
229
expect ( result . success ) . toBe ( true )
@@ -259,7 +259,7 @@ Use the \`@markdown-file\` directive to include markdown files.
259
259
const result = await Bun . build ( {
260
260
entrypoints : [ template ] ,
261
261
outdir : OUTPUT_DIR ,
262
- plugins : [ stxPlugin ] ,
262
+ plugins : [ stxPlugin ( ) ] ,
263
263
} )
264
264
265
265
expect ( result . success ) . toBe ( true )
@@ -284,7 +284,7 @@ Use the \`@markdown-file\` directive to include markdown files.
284
284
const result = await Bun . build ( {
285
285
entrypoints : [ template ] ,
286
286
outdir : OUTPUT_DIR ,
287
- plugins : [ stxPlugin ] ,
287
+ plugins : [ stxPlugin ( ) ] ,
288
288
} )
289
289
290
290
expect ( result . success ) . toBe ( true )
@@ -309,7 +309,7 @@ Use the \`@markdown-file\` directive to include markdown files.
309
309
const result = await Bun . build ( {
310
310
entrypoints : [ template ] ,
311
311
outdir : OUTPUT_DIR ,
312
- plugins : [ stxPlugin ] ,
312
+ plugins : [ stxPlugin ( ) ] ,
313
313
} )
314
314
315
315
expect ( result . success ) . toBe ( true )
@@ -338,7 +338,7 @@ Use the \`@markdown-file\` directive to include markdown files.
338
338
const result = await Bun . build ( {
339
339
entrypoints : [ template ] ,
340
340
outdir : OUTPUT_DIR ,
341
- plugins : [ stxPlugin ] ,
341
+ plugins : [ stxPlugin ( ) ] ,
342
342
} )
343
343
344
344
expect ( result . success ) . toBe ( true )
@@ -398,7 +398,7 @@ This markdown file was included using a relative path.
398
398
const result = await Bun . build ( {
399
399
entrypoints : [ template ] ,
400
400
outdir : OUTPUT_DIR ,
401
- plugins : [ stxPlugin ] ,
401
+ plugins : [ stxPlugin ( ) ] ,
402
402
} )
403
403
404
404
expect ( result . success ) . toBe ( true )
@@ -438,7 +438,7 @@ Written by {{ author }} on {{ publishDate }}
438
438
const result = await Bun . build ( {
439
439
entrypoints : [ template ] ,
440
440
outdir : OUTPUT_DIR ,
441
- plugins : [ stxPlugin ] ,
441
+ plugins : [ stxPlugin ( ) ] ,
442
442
} )
443
443
444
444
expect ( result . success ) . toBe ( true )
@@ -466,7 +466,7 @@ Written by {{ author }} on {{ publishDate }}
466
466
const result = await Bun . build ( {
467
467
entrypoints : [ template ] ,
468
468
outdir : OUTPUT_DIR ,
469
- plugins : [ stxPlugin ] ,
469
+ plugins : [ stxPlugin ( ) ] ,
470
470
} )
471
471
472
472
expect ( result . success ) . toBe ( true )
@@ -503,7 +503,7 @@ Written by {{ author }} on {{ publishDate }}
503
503
const result = await Bun . build ( {
504
504
entrypoints : [ template ] ,
505
505
outdir : OUTPUT_DIR ,
506
- plugins : [ stxPlugin ] ,
506
+ plugins : [ stxPlugin ( ) ] ,
507
507
} )
508
508
509
509
expect ( result . success ) . toBe ( true )
0 commit comments