@christiango/unbarrel 0.10.2 → 0.10.3

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.
@@ -1 +1 @@
1
- {"version":3,"file":"fixIssuesInBarrelFile.d.ts","sourceRoot":"","sources":["../src/fixIssuesInBarrelFile.ts"],"names":[],"mappings":"AA0EA;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,gBAAgB,EAAE,MAAM,QAkD7D"}
1
+ {"version":3,"file":"fixIssuesInBarrelFile.d.ts","sourceRoot":"","sources":["../src/fixIssuesInBarrelFile.ts"],"names":[],"mappings":"AA2DA;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,gBAAgB,EAAE,MAAM,QA+F7D"}
@@ -47,56 +47,37 @@ const parseUtils_1 = require("./parseUtils");
47
47
  * Groups resolved exports by their import path
48
48
  */
49
49
  function groupExportsByPath(exports) {
50
- const exportsByPath = new Map();
50
+ const grouped = new Map();
51
51
  for (const exp of exports) {
52
- const existing = exportsByPath.get(exp.importPath) || [];
53
- existing.push(exp);
54
- exportsByPath.set(exp.importPath, existing);
52
+ const list = grouped.get(exp.importPath) || [];
53
+ list.push(exp);
54
+ grouped.set(exp.importPath, list);
55
55
  }
56
- return exportsByPath;
57
- }
58
- /**
59
- * Creates export named declaration AST nodes from grouped exports
60
- */
61
- function createExportStatements(exportsByPath) {
62
- const statements = [];
63
- for (const [importPath, exps] of exportsByPath) {
64
- const specifiers = exps.map((e) => {
65
- const local = t.identifier(e.importedName);
66
- const exported = t.identifier(e.exportedName);
67
- const specifier = t.exportSpecifier(local, exported);
68
- // Set exportKind to 'type' for type-only exports
69
- if (e.typeOnly) {
70
- specifier.exportKind = 'type';
71
- }
72
- return specifier;
73
- });
74
- const exportDecl = t.exportNamedDeclaration(null, specifiers, t.stringLiteral(importPath));
75
- statements.push(exportDecl);
76
- }
77
- return statements;
56
+ return grouped;
78
57
  }
79
58
  /**
80
59
  * Deduplicates exports by exportedName.
81
- * When there are multiple exports with the same name, value exports (typeOnly: false)
82
- * take precedence over type-only exports (typeOnly: true), because a value export
83
- * can be used as both a value and a type (via typeof).
60
+ * Value exports take precedence over type-only exports.
84
61
  */
85
62
  function deduplicateExports(exports) {
86
- const exportsByName = new Map();
63
+ const byName = new Map();
87
64
  for (const exp of exports) {
88
- const existing = exportsByName.get(exp.exportedName);
89
- if (!existing) {
90
- // First occurrence of this export name
91
- exportsByName.set(exp.exportedName, exp);
92
- }
93
- else if (existing.typeOnly && !exp.typeOnly) {
94
- // Replace type-only export with value export (value takes precedence)
95
- exportsByName.set(exp.exportedName, exp);
65
+ const existing = byName.get(exp.exportedName);
66
+ if (!existing || (existing.typeOnly && !exp.typeOnly)) {
67
+ byName.set(exp.exportedName, exp);
96
68
  }
97
- // Otherwise keep the existing export (either both are same typeOnly, or existing is value and new is type)
98
69
  }
99
- return Array.from(exportsByName.values());
70
+ return Array.from(byName.values());
71
+ }
72
+ /**
73
+ * Creates an export specifier AST node from a resolved export
74
+ */
75
+ function createExportSpecifier(exp) {
76
+ const specifier = t.exportSpecifier(t.identifier(exp.importedName), t.identifier(exp.exportedName));
77
+ if (exp.typeOnly) {
78
+ specifier.exportKind = 'type';
79
+ }
80
+ return specifier;
100
81
  }
101
82
  /**
102
83
  * Fixes any issues in the referenced barrel file.
@@ -104,16 +85,33 @@ function deduplicateExports(exports) {
104
85
  */
105
86
  function fixIssuesInBarrelFile(absoluteFilePath) {
106
87
  const ast = (0, parseUtils_1.parseTypescriptFile)(absoluteFilePath);
107
- // Collect all export star declarations and their flattened exports
88
+ // Collect all exports in a single traverse pass
89
+ const existingExportsByName = new Map();
90
+ const existingStatementsByPath = new Map();
108
91
  const exportStarPaths = [];
109
92
  const allFlattenedExports = [];
110
93
  (0, traverse_1.default)(ast, {
94
+ ExportNamedDeclaration(path) {
95
+ if (!path.node.source)
96
+ return;
97
+ const namedExport = {
98
+ path,
99
+ sourcePath: path.node.source.value,
100
+ };
101
+ existingStatementsByPath.set(namedExport.sourcePath, namedExport);
102
+ path.node.specifiers.forEach((specifier, i) => {
103
+ if (specifier.type === 'ExportSpecifier' && specifier.exported.type === 'Identifier') {
104
+ existingExportsByName.set(specifier.exported.name, {
105
+ namedExport,
106
+ specifierIndex: i,
107
+ typeOnly: specifier.exportKind === 'type' || path.node.exportKind === 'type',
108
+ });
109
+ }
110
+ });
111
+ },
111
112
  ExportAllDeclaration(path) {
112
- const importPath = path.node.source.value;
113
- // Check if this is `export type *` (type-only export star)
114
113
  const isExportTypeStar = path.node.exportKind === 'type';
115
- // Flatten the export * into named exports
116
- const flattened = (0, flattenExportStar_1.flattenExportStar)(absoluteFilePath, importPath, isExportTypeStar);
114
+ const flattened = (0, flattenExportStar_1.flattenExportStar)(absoluteFilePath, path.node.source.value, isExportTypeStar);
117
115
  exportStarPaths.push(path);
118
116
  allFlattenedExports.push(...flattened);
119
117
  },
@@ -121,23 +119,55 @@ function fixIssuesInBarrelFile(absoluteFilePath) {
121
119
  if (exportStarPaths.length === 0) {
122
120
  return;
123
121
  }
124
- // Deduplicate exports across all export stars
122
+ // Deduplicate and filter exports
125
123
  const deduplicated = deduplicateExports(allFlattenedExports);
126
- // Group by import path
127
- const grouped = groupExportsByPath(deduplicated);
128
- // Create replacement export statements
129
- const newStatements = createExportStatements(grouped);
130
- // Replace the first export star with all the new statements
131
- exportStarPaths[0].replaceWithMultiple(newStatements);
132
- // Remove the remaining export stars
124
+ const toRemove = [];
125
+ const filteredExports = deduplicated.filter((exp) => {
126
+ const existing = existingExportsByName.get(exp.exportedName);
127
+ if (!existing)
128
+ return true;
129
+ // Upgrade type-only to value export
130
+ if (existing.typeOnly && !exp.typeOnly) {
131
+ toRemove.push(existing);
132
+ return true;
133
+ }
134
+ return false;
135
+ });
136
+ // Remove specifiers being upgraded from type to value
137
+ for (const { namedExport, specifierIndex } of toRemove) {
138
+ const specifiers = namedExport.path.node.specifiers;
139
+ if (specifiers.length === 1) {
140
+ namedExport.path.remove();
141
+ existingStatementsByPath.delete(namedExport.sourcePath);
142
+ }
143
+ else {
144
+ specifiers.splice(specifierIndex, 1);
145
+ }
146
+ }
147
+ // Group filtered exports and create/update statements
148
+ const grouped = groupExportsByPath(filteredExports);
149
+ const newStatements = [];
150
+ for (const [importPath, exps] of grouped) {
151
+ const existing = existingStatementsByPath.get(importPath);
152
+ if (existing) {
153
+ existing.path.node.specifiers.push(...exps.map(createExportSpecifier));
154
+ }
155
+ else {
156
+ newStatements.push(t.exportNamedDeclaration(null, exps.map(createExportSpecifier), t.stringLiteral(importPath)));
157
+ }
158
+ }
159
+ // Replace export stars
160
+ if (newStatements.length > 0) {
161
+ exportStarPaths[0].replaceWithMultiple(newStatements);
162
+ }
163
+ else {
164
+ exportStarPaths[0].remove();
165
+ }
133
166
  for (let i = 1; i < exportStarPaths.length; i++) {
134
167
  exportStarPaths[i].remove();
135
168
  }
136
- // Generate code from modified AST
137
- const output = (0, generator_1.default)(ast, {
138
- retainLines: false,
139
- comments: true,
140
- });
169
+ // Write output
170
+ const output = (0, generator_1.default)(ast, { retainLines: false, comments: true });
141
171
  fs.writeFileSync(absoluteFilePath, output.code, 'utf8');
142
172
  }
143
173
  //# sourceMappingURL=fixIssuesInBarrelFile.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"fixIssuesInBarrelFile.js","sourceRoot":"","sources":["../src/fixIssuesInBarrelFile.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"fixIssuesInBarrelFile.js","sourceRoot":"","sources":["../src/fixIssuesInBarrelFile.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christiango/unbarrel",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "description": "Utilities for optimizing barrel files",
5
5
  "main": "lib/index.js",
6
6
  "bin": "lib/cli.js",