@christiango/unbarrel 0.0.9 → 0.10.1

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.
Files changed (43) hide show
  1. package/.prettierignore +10 -0
  2. package/.yarn/install-state.gz +0 -0
  3. package/.yarn/releases/yarn-4.12.0.cjs +942 -0
  4. package/.yarnrc.yml +3 -0
  5. package/README.md +35 -1
  6. package/lib/cli.js +10 -11
  7. package/lib/cli.js.map +1 -1
  8. package/lib/fixIssuesInBarrelFile.d.ts +6 -0
  9. package/lib/fixIssuesInBarrelFile.d.ts.map +1 -0
  10. package/lib/fixIssuesInBarrelFile.js +135 -0
  11. package/lib/fixIssuesInBarrelFile.js.map +1 -0
  12. package/lib/flattenExportStar.d.ts +9 -0
  13. package/lib/flattenExportStar.d.ts.map +1 -0
  14. package/lib/flattenExportStar.js +41 -0
  15. package/lib/flattenExportStar.js.map +1 -0
  16. package/lib/getAllExportDefinitionsReachableFromModule.d.ts +8 -0
  17. package/lib/getAllExportDefinitionsReachableFromModule.d.ts.map +1 -0
  18. package/lib/getAllExportDefinitionsReachableFromModule.js +44 -0
  19. package/lib/getAllExportDefinitionsReachableFromModule.js.map +1 -0
  20. package/lib/getExportDefinitionFromReExport.d.ts +20 -0
  21. package/lib/getExportDefinitionFromReExport.d.ts.map +1 -0
  22. package/lib/getExportDefinitionFromReExport.js +85 -0
  23. package/lib/getExportDefinitionFromReExport.js.map +1 -0
  24. package/lib/getExportsFromModule.d.ts.map +1 -1
  25. package/lib/getExportsFromModule.js +63 -35
  26. package/lib/getExportsFromModule.js.map +1 -1
  27. package/lib/importUtils.d.ts +6 -0
  28. package/lib/importUtils.d.ts.map +1 -1
  29. package/lib/importUtils.js +12 -0
  30. package/lib/importUtils.js.map +1 -1
  31. package/lib/index.d.ts +1 -0
  32. package/lib/index.d.ts.map +1 -1
  33. package/lib/index.js +3 -1
  34. package/lib/index.js.map +1 -1
  35. package/lib/parseUtils.d.ts +8 -0
  36. package/lib/parseUtils.d.ts.map +1 -0
  37. package/lib/parseUtils.js +55 -0
  38. package/lib/parseUtils.js.map +1 -0
  39. package/package.json +5 -6
  40. package/lib/unbarrel.d.ts +0 -8
  41. package/lib/unbarrel.d.ts.map +0 -1
  42. package/lib/unbarrel.js +0 -11
  43. package/lib/unbarrel.js.map +0 -1
package/.yarnrc.yml ADDED
@@ -0,0 +1,3 @@
1
+ nodeLinker: node-modules
2
+
3
+ yarnPath: .yarn/releases/yarn-4.12.0.cjs
package/README.md CHANGED
@@ -1,3 +1,37 @@
1
1
  # @christiango/unbarrel
2
2
 
3
- This is a package that contains some utilities that can be used to fix and enforce any problematic patterns with barrel files in your repo. In general, layers of barrel files tend to be problematic for the performance of tools like jest and webpack. For more details on the performance problems that come with barrel files check out [https://marvinh.dev/blog/speeding-up-javascript-ecosystem-part-7/](Speeding up the JavaScript ecosystem - The barrel file debacle)
3
+ This is a package that contains some utilities that can be used to fix and enforce any problematic patterns with barrel files in your repo. In general, layers of barrel files tend to be problematic for the performance of tools like jest and webpack. For more details on the performance problems that come with barrel files check out [Speeding up the JavaScript ecosystem - The barrel file debacle](https://marvinh.dev/blog/speeding-up-javascript-ecosystem-part-7/)
4
+
5
+ ## CLI
6
+
7
+ ### Installation
8
+
9
+ ```bash
10
+ npm install -g @christiango/unbarrel
11
+ ```
12
+
13
+ ### Commands
14
+
15
+ #### `unbarrel fix <barrelFile>`
16
+
17
+ Converts all `export * from '...'` statements in a barrel file to explicit named exports.
18
+
19
+ ```bash
20
+ unbarrel fix ./src/index.ts
21
+ ```
22
+
23
+ **Before:**
24
+
25
+ ```typescript
26
+ export * from './utils';
27
+ export * from './components';
28
+ ```
29
+
30
+ **After:**
31
+
32
+ ```typescript
33
+ export { helper, formatDate } from './utils';
34
+ export { Button, Input } from './components';
35
+ ```
36
+
37
+ This improves tree-shaking and reduces the performance overhead caused by wildcard re-exports.
package/lib/cli.js CHANGED
@@ -35,24 +35,23 @@ var __importStar = (this && this.__importStar) || (function () {
35
35
  })();
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
37
  const commander_1 = require("commander");
38
- const unbarrel_1 = require("./unbarrel");
39
38
  const path = __importStar(require("path"));
39
+ const fixIssuesInBarrelFile_1 = require("./fixIssuesInBarrelFile");
40
40
  const program = new commander_1.Command();
41
- program.name('barrel-file-utils').description('Utilities for working with barrel files').version('1.0.0');
41
+ program.name('unbarrel').description('Utilities for working with barrel files').version('0.0.0');
42
42
  program
43
- .command('unbarrel')
44
- .description('Convert the first export * statement to export {} in a barrel file')
45
- .argument('<rootBarrelFile>', 'Path to the root barrel file to process')
46
- .action(async (rootBarrelFile) => {
43
+ .command('fix')
44
+ .description('Convert all export * from ... statements in a barrel file to explicit exports')
45
+ .argument('<barrelFile>', 'Path to the barrel file to process')
46
+ .action((barrelFile) => {
47
47
  try {
48
- // Resolve to absolute path
49
- const absolutePath = path.resolve(rootBarrelFile);
48
+ const absolutePath = path.resolve(barrelFile);
50
49
  console.log(`Processing barrel file: ${absolutePath}`);
51
- await (0, unbarrel_1.unbarrel)(absolutePath);
52
- console.log('Successfully ran unbarrel on the specified file');
50
+ (0, fixIssuesInBarrelFile_1.fixIssuesInBarrelFile)(absolutePath);
51
+ console.log('Successfully fixed barrel file');
53
52
  }
54
53
  catch (error) {
55
- console.error('Error:', error instanceof Error ? error.message : String(error));
54
+ console.error('Error:', error instanceof Error ? error.message : String(error));
56
55
  process.exit(1);
57
56
  }
58
57
  });
package/lib/cli.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,yCAAoC;AACpC,yCAAsC;AACtC,2CAA6B;AAE7B,MAAM,OAAO,GAAG,IAAI,mBAAO,EAAE,CAAC;AAE9B,OAAO,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,WAAW,CAAC,yCAAyC,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;AAE1G,OAAO;KACJ,OAAO,CAAC,UAAU,CAAC;KACnB,WAAW,CAAC,oEAAoE,CAAC;KACjF,QAAQ,CAAC,kBAAkB,EAAE,yCAAyC,CAAC;KACvE,MAAM,CAAC,KAAK,EAAE,cAAsB,EAAE,EAAE;IACvC,IAAI,CAAC;QACH,2BAA2B;QAC3B,MAAM,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;QAElD,OAAO,CAAC,GAAG,CAAC,2BAA2B,YAAY,EAAE,CAAC,CAAC;QAEvD,MAAM,IAAA,mBAAQ,EAAC,YAAY,CAAC,CAAC;QAE7B,OAAO,CAAC,GAAG,CAAC,mDAAmD,CAAC,CAAC;IACnE,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,CAAC,KAAK,CAAC,UAAU,EAAE,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;QAClF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;AACH,CAAC,CAAC,CAAC;AAEL,OAAO,CAAC,KAAK,EAAE,CAAC"}
1
+ {"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,yCAAoC;AACpC,2CAA6B;AAC7B,mEAAgE;AAEhE,MAAM,OAAO,GAAG,IAAI,mBAAO,EAAE,CAAC;AAE9B,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,WAAW,CAAC,yCAAyC,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;AAEjG,OAAO;KACJ,OAAO,CAAC,KAAK,CAAC;KACd,WAAW,CAAC,+EAA+E,CAAC;KAC5F,QAAQ,CAAC,cAAc,EAAE,oCAAoC,CAAC;KAC9D,MAAM,CAAC,CAAC,UAAkB,EAAE,EAAE;IAC7B,IAAI,CAAC;QACH,MAAM,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;QAC9C,OAAO,CAAC,GAAG,CAAC,2BAA2B,YAAY,EAAE,CAAC,CAAC;QACvD,IAAA,6CAAqB,EAAC,YAAY,CAAC,CAAC;QACpC,OAAO,CAAC,GAAG,CAAC,gCAAgC,CAAC,CAAC;IAChD,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,CAAC,KAAK,CAAC,QAAQ,EAAE,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;QAChF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;AACH,CAAC,CAAC,CAAC;AAEL,OAAO,CAAC,KAAK,EAAE,CAAC"}
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Fixes any issues in the referenced barrel file.
3
+ * @param absoluteFilePath - the absolute path of the barrel file to fix
4
+ */
5
+ export declare function fixIssuesInBarrelFile(absoluteFilePath: string): void;
6
+ //# sourceMappingURL=fixIssuesInBarrelFile.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fixIssuesInBarrelFile.d.ts","sourceRoot":"","sources":["../src/fixIssuesInBarrelFile.ts"],"names":[],"mappings":"AAmEA;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,gBAAgB,EAAE,MAAM,QAkD7D"}
@@ -0,0 +1,135 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __importDefault = (this && this.__importDefault) || function (mod) {
36
+ return (mod && mod.__esModule) ? mod : { "default": mod };
37
+ };
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.fixIssuesInBarrelFile = fixIssuesInBarrelFile;
40
+ const fs = __importStar(require("node:fs"));
41
+ const traverse_1 = __importDefault(require("@babel/traverse"));
42
+ const generator_1 = __importDefault(require("@babel/generator"));
43
+ const t = __importStar(require("@babel/types"));
44
+ const flattenExportStar_1 = require("./flattenExportStar");
45
+ const parseUtils_1 = require("./parseUtils");
46
+ /**
47
+ * Groups resolved exports by their import path
48
+ */
49
+ function groupExportsByPath(exports) {
50
+ const exportsByPath = new Map();
51
+ for (const exp of exports) {
52
+ const existing = exportsByPath.get(exp.importPath) || [];
53
+ existing.push(exp);
54
+ exportsByPath.set(exp.importPath, existing);
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;
78
+ }
79
+ /**
80
+ * Deduplicates exports by exportedName, keeping the first occurrence
81
+ */
82
+ function deduplicateExports(exports) {
83
+ const seen = new Set();
84
+ const result = [];
85
+ for (const exp of exports) {
86
+ if (!seen.has(exp.exportedName)) {
87
+ seen.add(exp.exportedName);
88
+ result.push(exp);
89
+ }
90
+ }
91
+ return result;
92
+ }
93
+ /**
94
+ * Fixes any issues in the referenced barrel file.
95
+ * @param absoluteFilePath - the absolute path of the barrel file to fix
96
+ */
97
+ function fixIssuesInBarrelFile(absoluteFilePath) {
98
+ const ast = (0, parseUtils_1.parseTypescriptFile)(absoluteFilePath);
99
+ // Collect all export star declarations and their flattened exports
100
+ const exportStarPaths = [];
101
+ const allFlattenedExports = [];
102
+ (0, traverse_1.default)(ast, {
103
+ ExportAllDeclaration(path) {
104
+ const importPath = path.node.source.value;
105
+ // Check if this is `export type *` (type-only export star)
106
+ const isExportTypeStar = path.node.exportKind === 'type';
107
+ // Flatten the export * into named exports
108
+ const flattened = (0, flattenExportStar_1.flattenExportStar)(absoluteFilePath, importPath, isExportTypeStar);
109
+ exportStarPaths.push(path);
110
+ allFlattenedExports.push(...flattened);
111
+ },
112
+ });
113
+ if (exportStarPaths.length === 0) {
114
+ return;
115
+ }
116
+ // Deduplicate exports across all export stars
117
+ const deduplicated = deduplicateExports(allFlattenedExports);
118
+ // Group by import path
119
+ const grouped = groupExportsByPath(deduplicated);
120
+ // Create replacement export statements
121
+ const newStatements = createExportStatements(grouped);
122
+ // Replace the first export star with all the new statements
123
+ exportStarPaths[0].replaceWithMultiple(newStatements);
124
+ // Remove the remaining export stars
125
+ for (let i = 1; i < exportStarPaths.length; i++) {
126
+ exportStarPaths[i].remove();
127
+ }
128
+ // Generate code from modified AST
129
+ const output = (0, generator_1.default)(ast, {
130
+ retainLines: false,
131
+ comments: true,
132
+ });
133
+ fs.writeFileSync(absoluteFilePath, output.code, 'utf8');
134
+ }
135
+ //# sourceMappingURL=fixIssuesInBarrelFile.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fixIssuesInBarrelFile.js","sourceRoot":"","sources":["../src/fixIssuesInBarrelFile.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ import { ResolvedModuleDefinition } from './getExportDefinitionFromReExport';
2
+ /**
3
+ * Takes an export star and gets the list of fully resolved named exports that are currently reachable by the export *
4
+ * @param absolutePathOfBarrelFile - The absolute path of the barrel file with the export * in it
5
+ * @param importPath - The relative path of the module that is being referenced by the export *
6
+ * @param isExportTypeStar - If true, all exports will be marked as type-only (for `export type *` statements)
7
+ */
8
+ export declare function flattenExportStar(absolutePathOfBarrelFile: string, importPath: string, isExportTypeStar?: boolean): ResolvedModuleDefinition[];
9
+ //# sourceMappingURL=flattenExportStar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flattenExportStar.d.ts","sourceRoot":"","sources":["../src/flattenExportStar.ts"],"names":[],"mappings":"AAEA,OAAO,EAAmC,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAG9G;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAC/B,wBAAwB,EAAE,MAAM,EAChC,UAAU,EAAE,MAAM,EAClB,gBAAgB,GAAE,OAAe,GAChC,wBAAwB,EAAE,CAoC5B"}
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.flattenExportStar = flattenExportStar;
4
+ const getExportsFromModule_1 = require("./getExportsFromModule");
5
+ const importUtils_1 = require("./importUtils");
6
+ const getExportDefinitionFromReExport_1 = require("./getExportDefinitionFromReExport");
7
+ const getAllExportDefinitionsReachableFromModule_1 = require("./getAllExportDefinitionsReachableFromModule");
8
+ /**
9
+ * Takes an export star and gets the list of fully resolved named exports that are currently reachable by the export *
10
+ * @param absolutePathOfBarrelFile - The absolute path of the barrel file with the export * in it
11
+ * @param importPath - The relative path of the module that is being referenced by the export *
12
+ * @param isExportTypeStar - If true, all exports will be marked as type-only (for `export type *` statements)
13
+ */
14
+ function flattenExportStar(absolutePathOfBarrelFile, importPath, isExportTypeStar = false) {
15
+ const result = [];
16
+ const importAbsolutePath = (0, importUtils_1.getAbsolutePathOfImport)(absolutePathOfBarrelFile, importPath);
17
+ const moduleExports = (0, getExportsFromModule_1.getExportsFromModule)(importAbsolutePath);
18
+ for (const definition of moduleExports.definitions) {
19
+ const importName = definition.type === 'defaultExport' ? 'default' : definition.name;
20
+ result.push({
21
+ type: 'resolvedModuleDefinition',
22
+ exportedName: importName,
23
+ importedName: importName,
24
+ importPath,
25
+ // If the export star is type-only, all exports become type-only
26
+ typeOnly: isExportTypeStar || definition.typeOnly,
27
+ });
28
+ }
29
+ for (const reExport of moduleExports.reExports) {
30
+ if (reExport.type === 'exportAll') {
31
+ const reachableExports = (0, getAllExportDefinitionsReachableFromModule_1.getAllExportDefinitionsReachableFromModule)((0, importUtils_1.getAbsolutePathOfImport)(absolutePathOfBarrelFile, reExport.importPath), absolutePathOfBarrelFile);
32
+ result.push(...reachableExports.map((exp) => ({ ...exp, typeOnly: isExportTypeStar || exp.typeOnly })));
33
+ }
34
+ else {
35
+ const resolved = (0, getExportDefinitionFromReExport_1.getExportDefinitionFromReExport)((0, importUtils_1.getAbsolutePathOfImport)(absolutePathOfBarrelFile, reExport.importPath), reExport);
36
+ result.push({ ...resolved, typeOnly: isExportTypeStar || resolved.typeOnly });
37
+ }
38
+ }
39
+ return result;
40
+ }
41
+ //# sourceMappingURL=flattenExportStar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flattenExportStar.js","sourceRoot":"","sources":["../src/flattenExportStar.ts"],"names":[],"mappings":";;AAWA,8CAwCC;AAnDD,iEAA8D;AAC9D,+CAAwD;AACxD,uFAA8G;AAC9G,6GAA0G;AAE1G;;;;;GAKG;AACH,SAAgB,iBAAiB,CAC/B,wBAAgC,EAChC,UAAkB,EAClB,mBAA4B,KAAK;IAEjC,MAAM,MAAM,GAA+B,EAAE,CAAC;IAE9C,MAAM,kBAAkB,GAAG,IAAA,qCAAuB,EAAC,wBAAwB,EAAE,UAAU,CAAC,CAAC;IACzF,MAAM,aAAa,GAAG,IAAA,2CAAoB,EAAC,kBAAkB,CAAC,CAAC;IAE/D,KAAK,MAAM,UAAU,IAAI,aAAa,CAAC,WAAW,EAAE,CAAC;QACnD,MAAM,UAAU,GAAG,UAAU,CAAC,IAAI,KAAK,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC;QAErF,MAAM,CAAC,IAAI,CAAC;YACV,IAAI,EAAE,0BAA0B;YAChC,YAAY,EAAE,UAAU;YACxB,YAAY,EAAE,UAAU;YACxB,UAAU;YACV,gEAAgE;YAChE,QAAQ,EAAE,gBAAgB,IAAI,UAAU,CAAC,QAAQ;SAClD,CAAC,CAAC;IACL,CAAC;IAED,KAAK,MAAM,QAAQ,IAAI,aAAa,CAAC,SAAS,EAAE,CAAC;QAC/C,IAAI,QAAQ,CAAC,IAAI,KAAK,WAAW,EAAE,CAAC;YAClC,MAAM,gBAAgB,GAAG,IAAA,uFAA0C,EACjE,IAAA,qCAAuB,EAAC,wBAAwB,EAAE,QAAQ,CAAC,UAAU,CAAC,EACtE,wBAAwB,CACzB,CAAC;YACF,MAAM,CAAC,IAAI,CAAC,GAAG,gBAAgB,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,GAAG,GAAG,EAAE,QAAQ,EAAE,gBAAgB,IAAI,GAAG,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC;QAC1G,CAAC;aAAM,CAAC;YACN,MAAM,QAAQ,GAAG,IAAA,iEAA+B,EAC9C,IAAA,qCAAuB,EAAC,wBAAwB,EAAE,QAAQ,CAAC,UAAU,CAAC,EACtE,QAAQ,CACT,CAAC;YACF,MAAM,CAAC,IAAI,CAAC,EAAE,GAAG,QAAQ,EAAE,QAAQ,EAAE,gBAAgB,IAAI,QAAQ,CAAC,QAAQ,EAAE,CAAC,CAAC;QAChF,CAAC;IACH,CAAC;IAED,OAAO,MAAM,CAAC;AAChB,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { ResolvedModuleDefinition } from './getExportDefinitionFromReExport';
2
+ /**
3
+ * Resolves a named re-export to it's source definition
4
+ * @param absolutePathOfModule - the absolute path of the module where the re-export resides
5
+ * @param baseModulePath - the absolute path of the base module to compute relative paths from (defaults to absolutePathOfModule for external callers)
6
+ */
7
+ export declare function getAllExportDefinitionsReachableFromModule(absolutePathOfModule: string, baseModulePath?: string): ResolvedModuleDefinition[];
8
+ //# sourceMappingURL=getAllExportDefinitionsReachableFromModule.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getAllExportDefinitionsReachableFromModule.d.ts","sourceRoot":"","sources":["../src/getAllExportDefinitionsReachableFromModule.ts"],"names":[],"mappings":"AACA,OAAO,EAAmC,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAI9G;;;;GAIG;AACH,wBAAgB,0CAA0C,CACxD,oBAAoB,EAAE,MAAM,EAC5B,cAAc,GAAE,MAA6B,GAC5C,wBAAwB,EAAE,CAqC5B"}
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getAllExportDefinitionsReachableFromModule = getAllExportDefinitionsReachableFromModule;
7
+ const node_path_1 = __importDefault(require("node:path"));
8
+ const getExportDefinitionFromReExport_1 = require("./getExportDefinitionFromReExport");
9
+ const getExportsFromModule_1 = require("./getExportsFromModule");
10
+ const importUtils_1 = require("./importUtils");
11
+ /**
12
+ * Resolves a named re-export to it's source definition
13
+ * @param absolutePathOfModule - the absolute path of the module where the re-export resides
14
+ * @param baseModulePath - the absolute path of the base module to compute relative paths from (defaults to absolutePathOfModule for external callers)
15
+ */
16
+ function getAllExportDefinitionsReachableFromModule(absolutePathOfModule, baseModulePath = absolutePathOfModule) {
17
+ const result = [];
18
+ const exportsInModule = (0, getExportsFromModule_1.getExportsFromModule)(absolutePathOfModule);
19
+ // Compute relative path from base module's directory to current module
20
+ const baseDir = node_path_1.default.dirname(baseModulePath);
21
+ const relativeImportPath = absolutePathOfModule === baseModulePath
22
+ ? '.'
23
+ : (0, importUtils_1.convertToESMImportPath)(node_path_1.default.relative(baseDir, absolutePathOfModule).replace(/\.\w+$/, ''));
24
+ for (const definition of exportsInModule.definitions) {
25
+ const importName = definition.type === 'defaultExport' ? 'default' : definition.name;
26
+ result.push({
27
+ type: 'resolvedModuleDefinition',
28
+ importedName: importName,
29
+ exportedName: importName,
30
+ importPath: relativeImportPath,
31
+ typeOnly: definition.typeOnly,
32
+ });
33
+ }
34
+ for (const reExport of exportsInModule.reExports) {
35
+ if (reExport.type === 'exportAll') {
36
+ result.push(...getAllExportDefinitionsReachableFromModule((0, importUtils_1.getAbsolutePathOfImport)(absolutePathOfModule, reExport.importPath), baseModulePath));
37
+ }
38
+ else {
39
+ result.push((0, getExportDefinitionFromReExport_1.getExportDefinitionFromReExport)(absolutePathOfModule, reExport));
40
+ }
41
+ }
42
+ return result;
43
+ }
44
+ //# sourceMappingURL=getAllExportDefinitionsReachableFromModule.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getAllExportDefinitionsReachableFromModule.js","sourceRoot":"","sources":["../src/getAllExportDefinitionsReachableFromModule.ts"],"names":[],"mappings":";;;;;AAUA,gGAwCC;AAlDD,0DAA6B;AAC7B,uFAA8G;AAC9G,iEAA8D;AAC9D,+CAAgF;AAEhF;;;;GAIG;AACH,SAAgB,0CAA0C,CACxD,oBAA4B,EAC5B,iBAAyB,oBAAoB;IAE7C,MAAM,MAAM,GAA+B,EAAE,CAAC;IAE9C,MAAM,eAAe,GAAG,IAAA,2CAAoB,EAAC,oBAAoB,CAAC,CAAC;IAEnE,uEAAuE;IACvE,MAAM,OAAO,GAAG,mBAAI,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;IAC7C,MAAM,kBAAkB,GACtB,oBAAoB,KAAK,cAAc;QACrC,CAAC,CAAC,GAAG;QACL,CAAC,CAAC,IAAA,oCAAsB,EAAC,mBAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,oBAAoB,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,CAAC;IAEjG,KAAK,MAAM,UAAU,IAAI,eAAe,CAAC,WAAW,EAAE,CAAC;QACrD,MAAM,UAAU,GAAG,UAAU,CAAC,IAAI,KAAK,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,UAAU,CAAC,IAAI,CAAC;QACrF,MAAM,CAAC,IAAI,CAAC;YACV,IAAI,EAAE,0BAA0B;YAChC,YAAY,EAAE,UAAU;YACxB,YAAY,EAAE,UAAU;YACxB,UAAU,EAAE,kBAAkB;YAC9B,QAAQ,EAAE,UAAU,CAAC,QAAQ;SAC9B,CAAC,CAAC;IACL,CAAC;IAED,KAAK,MAAM,QAAQ,IAAI,eAAe,CAAC,SAAS,EAAE,CAAC;QACjD,IAAI,QAAQ,CAAC,IAAI,KAAK,WAAW,EAAE,CAAC;YAClC,MAAM,CAAC,IAAI,CACT,GAAG,0CAA0C,CAC3C,IAAA,qCAAuB,EAAC,oBAAoB,EAAE,QAAQ,CAAC,UAAU,CAAC,EAClE,cAAc,CACf,CACF,CAAC;QACJ,CAAC;aAAM,CAAC;YACN,MAAM,CAAC,IAAI,CAAC,IAAA,iEAA+B,EAAC,oBAAoB,EAAE,QAAQ,CAAC,CAAC,CAAC;QAC/E,CAAC;IACH,CAAC;IAED,OAAO,MAAM,CAAC;AAChB,CAAC"}
@@ -0,0 +1,20 @@
1
+ import { ModuleDefaultReExport, ModuleNamedReExport } from './getExportsFromModule';
2
+ /** Points to the corresponding definition of an entity that was re-export from a module. */
3
+ export interface ResolvedModuleDefinition {
4
+ type: 'resolvedModuleDefinition';
5
+ /** The path of the definition of this import relative to the location where it was re-exported */
6
+ importPath: string;
7
+ /** The name that was used as the export name in the module that defined this entity */
8
+ importedName: string;
9
+ /** The name of the export in the module where the re-export takes place. This won't match importedName if the re-export renames the module */
10
+ exportedName: string;
11
+ /** Set to true if the export is a type only export */
12
+ typeOnly: boolean;
13
+ }
14
+ /**
15
+ * Resolves a named re-export to it's source definition
16
+ * @param absolutePathOfModule - the absolute path of the module where the re-export resides
17
+ * @param reExportToResolve - the relative path of the import for the re-export
18
+ */
19
+ export declare function getExportDefinitionFromReExport(absolutePathOfModule: string, reExportToResolve: ModuleNamedReExport | ModuleDefaultReExport): ResolvedModuleDefinition;
20
+ //# sourceMappingURL=getExportDefinitionFromReExport.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getExportDefinitionFromReExport.d.ts","sourceRoot":"","sources":["../src/getExportDefinitionFromReExport.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,qBAAqB,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAI1G,4FAA4F;AAC5F,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,0BAA0B,CAAC;IACjC,kGAAkG;IAClG,UAAU,EAAE,MAAM,CAAC;IACnB,uFAAuF;IACvF,YAAY,EAAE,MAAM,CAAC;IACrB,8IAA8I;IAC9I,YAAY,EAAE,MAAM,CAAC;IACrB,sDAAsD;IACtD,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED;;;;GAIG;AACH,wBAAgB,+BAA+B,CAC7C,oBAAoB,EAAE,MAAM,EAC5B,iBAAiB,EAAE,mBAAmB,GAAG,qBAAqB,GAC7D,wBAAwB,CA4E1B"}
@@ -0,0 +1,85 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getExportDefinitionFromReExport = getExportDefinitionFromReExport;
7
+ const getExportsFromModule_1 = require("./getExportsFromModule");
8
+ const importUtils_1 = require("./importUtils");
9
+ const node_path_1 = __importDefault(require("node:path"));
10
+ /**
11
+ * Resolves a named re-export to it's source definition
12
+ * @param absolutePathOfModule - the absolute path of the module where the re-export resides
13
+ * @param reExportToResolve - the relative path of the import for the re-export
14
+ */
15
+ function getExportDefinitionFromReExport(absolutePathOfModule, reExportToResolve) {
16
+ const importAbsolutePath = (0, importUtils_1.getAbsolutePathOfImport)(absolutePathOfModule, reExportToResolve.importPath);
17
+ const exportsInModule = (0, getExportsFromModule_1.getExportsFromModule)(importAbsolutePath);
18
+ for (const definition of exportsInModule.definitions) {
19
+ if (definition.type === 'namedExport') {
20
+ if (reExportToResolve.type === 'namedExport' && definition.name === reExportToResolve.importedName) {
21
+ return {
22
+ type: 'resolvedModuleDefinition',
23
+ importPath: reExportToResolve.importPath,
24
+ importedName: definition.name,
25
+ exportedName: reExportToResolve.exportedName,
26
+ typeOnly: definition.typeOnly,
27
+ };
28
+ }
29
+ }
30
+ else if (definition.type === 'defaultExport') {
31
+ if (reExportToResolve.type === 'defaultExport' ||
32
+ (reExportToResolve.type === 'namedExport' && reExportToResolve.importedName === 'default')) {
33
+ return {
34
+ type: 'resolvedModuleDefinition',
35
+ importPath: reExportToResolve.importPath,
36
+ importedName: 'default',
37
+ exportedName: reExportToResolve.exportedName,
38
+ typeOnly: reExportToResolve.typeOnly,
39
+ };
40
+ }
41
+ }
42
+ }
43
+ for (const reExport of exportsInModule.reExports) {
44
+ if (reExport.type === 'namedExport') {
45
+ if (reExportToResolve.type === 'namedExport' && reExport.exportedName === reExportToResolve.importedName) {
46
+ const matchingDefinition = getExportDefinitionFromReExport(importAbsolutePath, reExport);
47
+ // Fix up the import path to be relative to the original module and handle any renames
48
+ return {
49
+ ...matchingDefinition,
50
+ importPath: (0, importUtils_1.convertToESMImportPath)(node_path_1.default.join(reExportToResolve.importPath, matchingDefinition.importPath)),
51
+ exportedName: reExportToResolve.exportedName,
52
+ typeOnly: matchingDefinition.typeOnly,
53
+ };
54
+ }
55
+ }
56
+ else if (reExport.type === 'defaultExport') {
57
+ if (reExportToResolve.type === 'defaultExport' ||
58
+ (reExportToResolve.type === 'namedExport' && reExportToResolve.importedName === 'default')) {
59
+ const matchingDefinition = getExportDefinitionFromReExport(importAbsolutePath, reExport);
60
+ // Fix up the import path to be relative to the original module and handle any renames
61
+ return {
62
+ ...matchingDefinition,
63
+ importPath: (0, importUtils_1.convertToESMImportPath)(node_path_1.default.join(reExportToResolve.importPath, matchingDefinition.importPath)),
64
+ exportedName: reExportToResolve.exportedName,
65
+ typeOnly: matchingDefinition.typeOnly,
66
+ };
67
+ }
68
+ }
69
+ else if (reExport.type === 'exportAll') {
70
+ const matchingDefinition = getExportDefinitionFromReExport(importAbsolutePath, {
71
+ ...reExportToResolve,
72
+ importPath: reExport.importPath,
73
+ });
74
+ // Fix up the import path to be relative to the original module and handle any renames
75
+ return {
76
+ ...matchingDefinition,
77
+ importPath: (0, importUtils_1.convertToESMImportPath)(node_path_1.default.join(reExportToResolve.importPath, matchingDefinition.importPath)),
78
+ exportedName: reExportToResolve.exportedName,
79
+ typeOnly: matchingDefinition.typeOnly,
80
+ };
81
+ }
82
+ }
83
+ throw new Error(`Could not resolve re-export ${reExportToResolve.exportedName} from ${absolutePathOfModule}`);
84
+ }
85
+ //# sourceMappingURL=getExportDefinitionFromReExport.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getExportDefinitionFromReExport.js","sourceRoot":"","sources":["../src/getExportDefinitionFromReExport.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"getExportsFromModule.d.ts","sourceRoot":"","sources":["../src/getExportsFromModule.ts"],"names":[],"mappings":"AAmBA,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,aAAa,CAAC;IACpB,0FAA0F;IAC1F,QAAQ,EAAE,OAAO,CAAC;IAClB,+DAA+D;IAC/D,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,eAAe,CAAC;IACtB,0FAA0F;IAC1F,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,2BAA2B;AAC3B,MAAM,MAAM,gBAAgB,GAAG,qBAAqB,GAAG,uBAAuB,CAAC;AAE/E,8CAA8C;AAC9C,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,WAAW,CAAC;IAClB,6DAA6D;IAC7D,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,aAAa,CAAC;IACpB,6DAA6D;IAC7D,YAAY,EAAE,MAAM,CAAC;IACrB,0IAA0I;IAC1I,YAAY,EAAE,MAAM,CAAC;IACrB,oEAAoE;IACpE,UAAU,EAAE,MAAM,CAAC;IACnB,0FAA0F;IAC1F,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,eAAe,CAAC;IACtB,0IAA0I;IAC1I,YAAY,EAAE,MAAM,CAAC;IACrB,oEAAoE;IACpE,UAAU,EAAE,MAAM,CAAC;IACnB,0FAA0F;IAC1F,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,wCAAwC;AACxC,MAAM,MAAM,cAAc,GAAG,iBAAiB,GAAG,mBAAmB,GAAG,qBAAqB,CAAC;AAE7F,wCAAwC;AACxC,MAAM,WAAW,aAAa;IAC5B,yDAAyD;IACzD,WAAW,EAAE,gBAAgB,EAAE,CAAC;IAChC,6DAA6D;IAC7D,SAAS,EAAE,cAAc,EAAE,CAAC;CAC7B;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,gBAAgB,EAAE,MAAM,GAAG,aAAa,CA0K5E"}
1
+ {"version":3,"file":"getExportsFromModule.d.ts","sourceRoot":"","sources":["../src/getExportsFromModule.ts"],"names":[],"mappings":"AAIA,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,aAAa,CAAC;IACpB,0FAA0F;IAC1F,QAAQ,EAAE,OAAO,CAAC;IAClB,+DAA+D;IAC/D,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,eAAe,CAAC;IACtB,0FAA0F;IAC1F,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,2BAA2B;AAC3B,MAAM,MAAM,gBAAgB,GAAG,qBAAqB,GAAG,uBAAuB,CAAC;AAE/E,8CAA8C;AAC9C,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,WAAW,CAAC;IAClB,6DAA6D;IAC7D,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,aAAa,CAAC;IACpB,6DAA6D;IAC7D,YAAY,EAAE,MAAM,CAAC;IACrB,0IAA0I;IAC1I,YAAY,EAAE,MAAM,CAAC;IACrB,oEAAoE;IACpE,UAAU,EAAE,MAAM,CAAC;IACnB,0FAA0F;IAC1F,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,MAAM,WAAW,qBAAqB;IACpC,IAAI,EAAE,eAAe,CAAC;IACtB,0IAA0I;IAC1I,YAAY,EAAE,MAAM,CAAC;IACrB,oEAAoE;IACpE,UAAU,EAAE,MAAM,CAAC;IACnB,0FAA0F;IAC1F,QAAQ,EAAE,OAAO,CAAC;CACnB;AAED,wCAAwC;AACxC,MAAM,MAAM,cAAc,GAAG,iBAAiB,GAAG,mBAAmB,GAAG,qBAAqB,CAAC;AAE7F,wCAAwC;AACxC,MAAM,WAAW,aAAa;IAC5B,yDAAyD;IACzD,WAAW,EAAE,gBAAgB,EAAE,CAAC;IAChC,6DAA6D;IAC7D,SAAS,EAAE,cAAc,EAAE,CAAC;CAC7B;AAED;;;;GAIG;AACH,wBAAgB,oBAAoB,CAAC,gBAAgB,EAAE,MAAM,GAAG,aAAa,CA8M5E"}