@1adybug/prettier-plugin-sort-imports 0.0.14 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -99,7 +99,8 @@ function formatImportStatement(statement) {
|
|
|
99
99
|
const namedPartsWithComments = [];
|
|
100
100
|
for (const content of importContents){
|
|
101
101
|
if ("default" === content.name) {
|
|
102
|
-
if (isExport
|
|
102
|
+
if (isExport) if (content.alias) namedParts.push(`default as ${content.alias}`);
|
|
103
|
+
else namedParts.push("default");
|
|
103
104
|
else parts.push(content.alias ?? "default");
|
|
104
105
|
continue;
|
|
105
106
|
}
|