Skip to content

Commit 7d8dc11

Browse files
committedJul 24, 2022
Add id field to esbuild messages
1 parent 7f37b95 commit 7d8dc11

File tree

2 files changed

+21
-11
lines changed

2 files changed

+21
-11
lines changed
 

‎packages/esbuild/lib/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ export function esbuild(options = {}) {
198198

199199
;(!('fatal' in message) || message.fatal ? errors : warnings).push({
200200
pluginName: name,
201+
id: '',
201202
text:
202203
'reason' in message
203204
? message.reason

‎packages/esbuild/test/index.test.js

+20-11
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,10 @@ test('@mdx-js/esbuild', async () => {
209209
},
210210
notes: [],
211211
pluginName: '@mdx-js/esbuild',
212-
text: 'Unexpected character `/` (U+002F) before local name, expected a character that can start a name, such as a letter, `$`, or `_` (note: to create a link in MDX, use `[text](url)`)'
212+
text: 'Unexpected character `/` (U+002F) before local name, expected a character that can start a name, such as a letter, `$`, or `_` (note: to create a link in MDX, use `[text](url)`)',
213+
id: ''
213214
},
214-
'should pass errors'
215+
'should pass errors (1)'
215216
)
216217
}
217218

@@ -288,7 +289,8 @@ test('@mdx-js/esbuild', async () => {
288289
},
289290
notes: [],
290291
pluginName: '@mdx-js/esbuild',
291-
text: '7'
292+
text: '7',
293+
id: ''
292294
}
293295
],
294296
warnings: [
@@ -304,7 +306,8 @@ test('@mdx-js/esbuild', async () => {
304306
},
305307
notes: [],
306308
pluginName: '@mdx-js/esbuild',
307-
text: '1'
309+
text: '1',
310+
id: ''
308311
},
309312
{
310313
location: {
@@ -318,7 +321,8 @@ test('@mdx-js/esbuild', async () => {
318321
},
319322
notes: [],
320323
pluginName: '@mdx-js/esbuild',
321-
text: '2'
324+
text: '2',
325+
id: ''
322326
},
323327
{
324328
location: {
@@ -332,7 +336,8 @@ test('@mdx-js/esbuild', async () => {
332336
},
333337
notes: [],
334338
pluginName: '@mdx-js/esbuild',
335-
text: '3'
339+
text: '3',
340+
id: ''
336341
},
337342
{
338343
location: {
@@ -346,7 +351,8 @@ test('@mdx-js/esbuild', async () => {
346351
},
347352
notes: [],
348353
pluginName: '@mdx-js/esbuild',
349-
text: '4'
354+
text: '4',
355+
id: ''
350356
},
351357
{
352358
location: {
@@ -360,7 +366,8 @@ test('@mdx-js/esbuild', async () => {
360366
},
361367
notes: [],
362368
pluginName: '@mdx-js/esbuild',
363-
text: '5'
369+
text: '5',
370+
id: ''
364371
},
365372
{
366373
location: {
@@ -374,7 +381,8 @@ test('@mdx-js/esbuild', async () => {
374381
},
375382
notes: [],
376383
pluginName: '@mdx-js/esbuild',
377-
text: '6'
384+
text: '6',
385+
id: ''
378386
}
379387
]
380388
},
@@ -436,12 +444,13 @@ test('@mdx-js/esbuild', async () => {
436444
},
437445
notes: [],
438446
pluginName: '@mdx-js/esbuild',
439-
text: 'Error: Something went wrong'
447+
text: 'Error: Something went wrong',
448+
id: ''
440449
}
441450
],
442451
warnings: []
443452
},
444-
'should pass errors'
453+
'should pass errors (2)'
445454
)
446455
}
447456

0 commit comments

Comments
 (0)
Please sign in to comment.