You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/mdx/lib/plugin/recma-document.js
+22-9
Original file line number
Diff line number
Diff line change
@@ -134,11 +134,15 @@ export function recmaDocument(options) {
134
134
if(child.type==='ExportDefaultDeclaration'){
135
135
if(layout){
136
136
file.fail(
137
-
'Cannot specify multiple layouts (previous: '+
137
+
'Unexpected duplicate layout, expected a single layout (previous: '+
138
138
stringifyPosition(positionFromEstree(layout))+
139
139
')',
140
-
positionFromEstree(child),
141
-
'recma-document:duplicate-layout'
140
+
{
141
+
ancestors: [tree,child],
142
+
place: positionFromEstree(child),
143
+
ruleId: 'duplicate-layout',
144
+
source: 'recma-document'
145
+
}
142
146
)
143
147
}
144
148
@@ -169,11 +173,15 @@ export function recmaDocument(options) {
169
173
if(specifier.exported.name==='default'){
170
174
if(layout){
171
175
file.fail(
172
-
'Cannot specify multiple layouts (previous: '+
176
+
'Unexpected duplicate layout, expected a single layout (previous: '+
173
177
stringifyPosition(positionFromEstree(layout))+
174
178
')',
175
-
positionFromEstree(child),
176
-
'recma-document:duplicate-layout'
179
+
{
180
+
ancestors: [tree,child,specifier],
181
+
place: positionFromEstree(child),
182
+
ruleId: 'duplicate-layout',
183
+
source: 'recma-document'
184
+
}
177
185
)
178
186
}
179
187
@@ -413,9 +421,14 @@ export function recmaDocument(options) {
413
421
){
414
422
if(!useDynamicImport){
415
423
file.fail(
416
-
'Cannot use `import` or `export … from` in `evaluate` (outputting a function body) by default: please set `useDynamicImport: true` (and probably specify a `baseUrl`)',
417
-
positionFromEstree(node),
418
-
'recma-document:invalid-esm-statement'
424
+
'Unexpected `import` or `export … from` in `evaluate` (outputting a function body) by default: please set `useDynamicImport: true` (and probably specify a `baseUrl`)',
425
+
{
426
+
// Results of this function end up in `tree` again.
1 commit comments
vercel[bot] commentedon Oct 22, 2023
Successfully deployed to the following URLs:
mdx – ./
mdx-mdx.vercel.app
mdx-git-main-mdx.vercel.app
mdxjs.com
v2.mdxjs.com