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
`Error: could not find exported declaration "${exp.identifier}" in "${exp.importSource}": Ignoring export...`,
101
+
debug(
102
+
`Error: could not find exported declaration "${exp.identifier}" in "${exp.importSource}": Ignoring export...\n\toccurred at ${exp.sourceFilePathAbsolute}}`,
102
103
);
103
-
console.error(`\toccurred at ${exp.sourceFilePathAbsolute}}`);
104
104
}
105
105
}
106
106
}else{
@@ -113,8 +113,7 @@ export class ExportsPostProcessor extends PostProcessor {
`Error: external declaration with identifier "${exp.identifier}" in module "${exp.importSource}" could not be found: Ignoring export...`,
178
177
);
179
178
}
180
179
}
181
180
}else{
182
-
console.error(
183
-
`Error: external module "${exp.importSource}" for re-export of "${exp.identifier}" could not be found. Ignoring export...`,
181
+
debug(
182
+
`Error: external module "${exp.importSource}" for re-export of "${exp.identifier}" could not be found. Ignoring export...\n\toccurred at ${exp.sourceFilePathAbsolute}`,
184
183
);
185
-
console.error(`\toccurred at ${exp.sourceFilePathAbsolute}}`);
0 commit comments