Open Ding-Fan opened 3 years ago
maybe a fix for #1
https://developer.mozilla.org/en-US/docs/web/javascript/reference/statements/export
Note: The following is syntactically invalid despite its import equivalent:
import DefaultExport from 'bar.js'; // Valid export DefaultExport from 'bar.js'; // Invalid
The correct way of doing this is to rename the export:
export { default as DefaultExport } from 'bar.js';
Can you publish your fork to https://deno.land/x ?
sorry, really busy these days :sleepy: maybe you can publish it :smiley:
Any advance on this? 🤔
maybe a fix for #1
https://developer.mozilla.org/en-US/docs/web/javascript/reference/statements/export
The correct way of doing this is to rename the export: