@proteinjs/reflection-build 1.4.12 → 1.5.0

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 (30) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/src/codegen/writeGeneratedIndex.d.ts +7 -0
  3. package/dist/src/codegen/writeGeneratedIndex.js +39 -6
  4. package/dist/src/codegen/writeGeneratedIndex.js.map +1 -1
  5. package/dist/test/DependencySourceGraphGate.test.d.ts +1 -0
  6. package/dist/test/DependencySourceGraphGate.test.js +78 -0
  7. package/dist/test/DependencySourceGraphGate.test.js.map +1 -0
  8. package/dist/test/examples/source-repository/a/generated/index.d.ts +0 -8
  9. package/dist/test/examples/source-repository/a/generated/index.js +0 -8
  10. package/dist/test/examples/source-repository/a/generated/index.js.map +1 -1
  11. package/dist/test/examples/source-repository/b/generated/index.d.ts +0 -8
  12. package/dist/test/examples/source-repository/b/generated/index.js +0 -8
  13. package/dist/test/examples/source-repository/b/generated/index.js.map +1 -1
  14. package/package.json +2 -2
  15. package/src/codegen/writeGeneratedIndex.ts +35 -2
  16. package/test/DependencySourceGraphGate.test.ts +61 -0
  17. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.d.ts +7 -0
  18. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js +39 -6
  19. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js.map +1 -1
  20. package/test/examples/source-repository/a/dist/generated/index.d.ts +0 -8
  21. package/test/examples/source-repository/a/dist/generated/index.js +0 -8
  22. package/test/examples/source-repository/a/dist/generated/index.js.map +1 -1
  23. package/test/examples/source-repository/a/generated/index.ts +0 -8
  24. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.d.ts +7 -0
  25. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js +39 -6
  26. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js.map +1 -1
  27. package/test/examples/source-repository/b/dist/generated/index.d.ts +0 -8
  28. package/test/examples/source-repository/b/dist/generated/index.js +0 -8
  29. package/test/examples/source-repository/b/dist/generated/index.js.map +1 -1
  30. package/test/examples/source-repository/b/generated/index.ts +0 -9
@@ -0,0 +1,61 @@
1
+ import * as fs from 'fs';
2
+ import * as os from 'os';
3
+ import * as path from 'path';
4
+ import { dependencyHasSourceGraph } from '../src/codegen/writeGeneratedIndex';
5
+
6
+ /**
7
+ * The dependency-import gate (MOBILE_SUPPORT S11 bundle diet): generated indexes import a
8
+ * dependency iff it ships `dist/generated/index.js` — the artifact writeGeneratedIndex
9
+ * itself emits. Outcome tests over a real on-disk npm layout, including the hoisted case.
10
+ */
11
+ describe('dependencyHasSourceGraph', () => {
12
+ let root: string;
13
+
14
+ const mkpkg = (base: string, name: string, withGraph: boolean) => {
15
+ const dir = path.join(base, 'node_modules', name);
16
+ fs.mkdirSync(dir, { recursive: true });
17
+ fs.writeFileSync(path.join(dir, 'package.json'), JSON.stringify({ name, version: '1.0.0' }));
18
+ if (withGraph) {
19
+ const gen = path.join(dir, 'dist', 'generated');
20
+ fs.mkdirSync(gen, { recursive: true });
21
+ fs.writeFileSync(path.join(gen, 'index.js'), '// sourceGraph artifact');
22
+ }
23
+ };
24
+
25
+ beforeEach(() => {
26
+ root = fs.mkdtempSync(path.join(os.tmpdir(), 'refl-gate-'));
27
+ });
28
+
29
+ afterEach(() => {
30
+ fs.rmdirSync(root, { recursive: true });
31
+ });
32
+
33
+ it('accepts a dependency that ships dist/generated/index.js', () => {
34
+ mkpkg(root, '@scope/reflected-dep', true);
35
+ expect(dependencyHasSourceGraph(root, '@scope/reflected-dep')).toBe(true);
36
+ });
37
+
38
+ it('rejects a resolvable dependency without the artifact (icon sets, ui libs)', () => {
39
+ mkpkg(root, '@fortawesome/pro-solid-svg-icons', false);
40
+ expect(dependencyHasSourceGraph(root, '@fortawesome/pro-solid-svg-icons')).toBe(false);
41
+ });
42
+
43
+ it('finds the artifact through hoisted node_modules (walks up like npm resolution)', () => {
44
+ const consumer = path.join(root, 'node_modules', '@scope', 'consumer');
45
+ fs.mkdirSync(consumer, { recursive: true });
46
+ mkpkg(root, '@scope/hoisted-reflected', true);
47
+ expect(dependencyHasSourceGraph(consumer, '@scope/hoisted-reflected')).toBe(true);
48
+ });
49
+
50
+ it('stops at the nearest resolved copy: a local artifact-less copy shadows a hoisted one', () => {
51
+ const consumer = path.join(root, 'pkg');
52
+ fs.mkdirSync(consumer, { recursive: true });
53
+ mkpkg(consumer, 'dep', false);
54
+ mkpkg(root, 'dep', true);
55
+ expect(dependencyHasSourceGraph(consumer, 'dep')).toBe(false);
56
+ });
57
+
58
+ it('rejects an unresolvable dependency', () => {
59
+ expect(dependencyHasSourceGraph(root, 'not-installed-anywhere')).toBe(false);
60
+ });
61
+ });
@@ -8,3 +8,10 @@
8
8
  * If omitted, we re-export from '<packageRoot>/index'.
9
9
  */
10
10
  export declare function writeGeneratedIndex(packageDir: string, packageGeneratedDir: string, generatedIndexPath: string, sourceRootsRel?: string | string[], publicEntryRelOverride?: string): Promise<void>;
11
+ /**
12
+ * True iff the dependency ships a reflection source graph (`dist/generated/index.js`, the
13
+ * artifact `writeGeneratedIndex` itself emits). Located by walking `node_modules` up from the
14
+ * consuming package — the npm layout lookup, immune to `exports`-map resolution restrictions
15
+ * and correct for workspace symlinks (the symlinked package root carries its own dist).
16
+ */
17
+ export declare function dependencyHasSourceGraph(packageDir: string, packageName: string): boolean;
@@ -62,7 +62,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
62
62
  return (mod && mod.__esModule) ? mod : { "default": mod };
63
63
  };
64
64
  Object.defineProperty(exports, "__esModule", { value: true });
65
- exports.writeGeneratedIndex = void 0;
65
+ exports.dependencyHasSourceGraph = exports.writeGeneratedIndex = void 0;
66
+ var fs = __importStar(require("fs"));
66
67
  var path = __importStar(require("path"));
67
68
  var util_node_1 = require("@proteinjs/util-node");
68
69
  var util_1 = require("@proteinjs/util");
@@ -179,11 +180,18 @@ function loadDependencySourceGraphs(packageDir, packageJson) {
179
180
  .filter(Boolean);
180
181
  if (packageJson.dependencies) {
181
182
  for (var packageName in packageJson.dependencies) {
182
- // Skip any packages listed in SKIP_REFLECTION_LOAD
183
+ // Skip any packages listed in SKIP_REFLECTION_LOAD (deliberate opt-out for deps that
184
+ // DO carry a graph but should not load in this package's context)
183
185
  if (skipList.includes(packageName)) {
184
186
  continue;
185
187
  }
186
- if (packageName.startsWith('@material-ui')) {
188
+ // Only reflection-built dependencies belong here: the import exists solely to run the
189
+ // dependency's generated index (SourceRepository.merge of its source graph). A dep is
190
+ // reflection-built iff it ships the artifact this same codegen emits —
191
+ // dist/generated/index.js. Everything else (icon sets, ui libs, utilities) contributed
192
+ // nothing at runtime while pinning its entire dependency root into every consumer's
193
+ // bundle (observed: ~19 duplicate FontAwesome set copies across the app bundle).
194
+ if (!dependencyHasSourceGraph(packageDir, packageName)) {
187
195
  continue;
188
196
  }
189
197
  var specifier = getDependencyImportSpecifier(packageDir, packageName);
@@ -195,6 +203,31 @@ function loadDependencySourceGraphs(packageDir, packageJson) {
195
203
  }
196
204
  return code;
197
205
  }
206
+ /**
207
+ * True iff the dependency ships a reflection source graph (`dist/generated/index.js`, the
208
+ * artifact `writeGeneratedIndex` itself emits). Located by walking `node_modules` up from the
209
+ * consuming package — the npm layout lookup, immune to `exports`-map resolution restrictions
210
+ * and correct for workspace symlinks (the symlinked package root carries its own dist).
211
+ */
212
+ function dependencyHasSourceGraph(packageDir, packageName) {
213
+ var currentDir = packageDir;
214
+ // Upward fs walk; exits are internal (found / package root / fs root).
215
+ for (;;) {
216
+ var candidate = path.join(currentDir, 'node_modules', packageName);
217
+ if (fs.existsSync(path.join(candidate, 'dist', 'generated', 'index.js'))) {
218
+ return true;
219
+ }
220
+ if (fs.existsSync(candidate)) {
221
+ return false;
222
+ }
223
+ var parent_1 = path.dirname(currentDir);
224
+ if (parent_1 === currentDir) {
225
+ return false;
226
+ }
227
+ currentDir = parent_1;
228
+ }
229
+ }
230
+ exports.dependencyHasSourceGraph = dependencyHasSourceGraph;
198
231
  /**
199
232
  * Determine an import specifier for a dependency that respects its package.json exports or main/module fields.
200
233
  */
@@ -303,11 +336,11 @@ function removeNonLoadableNode(packageScope, buildTargetPackageName, sourceGraph
303
336
  shouldRemove = false;
304
337
  continue;
305
338
  }
306
- var parent_1 = sourceGraph.node(outEdge.w);
307
- if (!parent_1) {
339
+ var parent_2 = sourceGraph.node(outEdge.w);
340
+ if (!parent_2) {
308
341
  continue;
309
342
  }
310
- if (!removeNonLoadableNode(parent_1, buildTargetPackageName, sourceGraph)) {
343
+ if (!removeNonLoadableNode(parent_2, buildTargetPackageName, sourceGraph)) {
311
344
  shouldRemove = false;
312
345
  }
313
346
  }
@@ -1 +1 @@
1
- {"version":3,"file":"writeGeneratedIndex.js","sourceRoot":"","sources":["../../../../../../src/codegen/writeGeneratedIndex.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"writeGeneratedIndex.js","sourceRoot":"","sources":["../../../../../../src/codegen/writeGeneratedIndex.ts"],"names":[],"mappings":"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"}
@@ -1,11 +1,3 @@
1
1
  /** Load Dependency Source Graphs */
2
- import '@dagrejs/graphlib';
3
- import '@proteinjs/reflection';
4
2
  import '@proteinjs/reflection-build-test-b';
5
- import '@proteinjs/util';
6
- import '@proteinjs/util-node';
7
- import 'globby';
8
- import 'gulp';
9
- import 'gulp-shell';
10
- import 'jsesc';
11
3
  export * from '../index';
@@ -15,15 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
16
  };
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
- require("@dagrejs/graphlib");
19
- require("@proteinjs/reflection");
20
18
  require("@proteinjs/reflection-build-test-b");
21
- require("@proteinjs/util");
22
- require("@proteinjs/util-node");
23
- require("globby");
24
- require("gulp");
25
- require("gulp-shell");
26
- require("jsesc");
27
19
  /** Generate Source Graph */
28
20
  var sourceGraph = "{\"options\":{\"directed\":true,\"multigraph\":false,\"compound\":false},\"nodes\":[{\"v\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsNotLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ y: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ y: string }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ y: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ y: string }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsNotLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsNotLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsNotLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalNotLoadableInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalNotLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalNotLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"y\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsNotLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"y\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLocalLoadableType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ a: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ a: string }\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLocalLoadableTypeWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"type\":{\"packageName\":\"\",\"name\":\"LocalLoadableTypeWithArgs<LocalLoadableType>\",\"filePath\":null,\"qualifiedName\":\"/LocalLoadableTypeWithArgs<LocalLoadableType>\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableTypeWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableType\"],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableTypeWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"typeParameters\":[\"/T\"],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ a: number }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ a: number }\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ b: number }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ b: number }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsLocalLoadableType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableInterfaceWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[\"/T\"],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterfaceWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableAbstractClassWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClassWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClassWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[\"/T\"],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalLoadableInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalLoadableAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection/Loadable\"},{\"v\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"TypeFilter\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/TypeFilter.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"blocklist\",\"type\":{\"packageName\":\"\",\"name\":\"string[]\",\"filePath\":null,\"qualifiedName\":\"/string[]\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"private\"}],\"methods\":[{\"name\":\"filterObject\",\"returnType\":{\"packageName\":\"\",\"name\":\"boolean\",\"filePath\":null,\"qualifiedName\":\"/boolean\",\"typeParameters\":null,\"directParents\":null},\"isAsync\":false,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"parameters\":[{\"name\":\"qualifiedName\",\"type\":{\"packageName\":\"\",\"name\":\"string\",\"filePath\":null,\"qualifiedName\":\"/string\",\"typeParameters\":null,\"directParents\":null}}]}],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"SourceRepositoryFilter\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/SourceRepositoryFilter\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection/SourceRepositoryFilter\"}],\"edges\":[{\"v\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"w\":\"@proteinjs/reflection/SourceRepositoryFilter\",\"value\":\"implements interface\"}]}";
29
21
  /** Generate Source Links */
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../generated/index.ts"],"names":[],"mappings":";AAAA,oCAAoC;;;;;;;;;;;;;;;;AAEpC,6BAA2B;AAC3B,iCAA+B;AAC/B,8CAA4C;AAC5C,2BAAyB;AACzB,gCAA8B;AAC9B,kBAAgB;AAChB,gBAAc;AACd,sBAAoB;AACpB,iBAAe;AAGf,4BAA4B;AAE5B,IAAM,WAAW,GAAG,8y+CAA8y+C,CAAC;AAGn0+C,4BAA4B;AAE5B,gEAA0E;AAC1E,gEAA6E;AAC7E,gEAAiF;AACjF,gEAAoF;AACpF,gEAA+E;AAC/E,gEAAkF;AAClF,gEAAmF;AACnF,gEAAsF;AACtF,gEAAsF;AACtF,4DAAqF;AACrF,iEAAgF;AAChF,iEAA0F;AAC1F,iEAAmF;AACnF,iEAA6F;AAC7F,4DAAsE;AACtE,4DAA8E;AAC9E,4DAA6E;AAC7E,4DAA2E;AAC3E,4DAAmF;AACnF,4DAA+E;AAC/E,8DAAsE;AACtE,4DAAuF;AACvF,8DAA8E;AAC9E,4DAAkF;AAClF,6DAA4E;AAC5E,6DAAsF;AACtF,gDAA+C;AAE/C,IAAM,WAAW,GAAG;IACnB,kEAAkE,EAAE,kDAA6B;IACjG,qEAAqE,EAAE,qDAAgC;IACvG,yEAAyE,EAAE,yDAAoC;IAC/G,4EAA4E,EAAE,4DAAuC;IACrH,uEAAuE,EAAE,uDAAkC;IAC3G,0EAA0E,EAAE,0DAAqC;IACjH,2EAA2E,EAAE,2DAAsC;IACnH,8EAA8E,EAAE,8DAAyC;IACzH,8EAA8E,EAAE,8DAAyC;IACzH,+EAA+E,EAAE,6DAA0C;IAC3H,wEAAwE,EAAE,yDAAmC;IAC7G,kFAAkF,EAAE,mEAA6C;IACjI,2EAA2E,EAAE,4DAAsC;IACnH,qFAAqF,EAAE,sEAAgD;IACvI,gEAAgE,EAAE,8CAA2B;IAC7F,wEAAwE,EAAE,sDAAmC;IAC7G,uEAAuE,EAAE,qDAAkC;IAC3G,qEAAqE,EAAE,mDAAgC;IACvG,6EAA6E,EAAE,2DAAwC;IACvH,yEAAyE,EAAE,uDAAoC;IAC/G,+DAA+D,EAAE,8CAA0B;IAC3F,iFAAiF,EAAE,+DAA4C;IAC/H,uEAAuE,EAAE,sDAAkC;IAC3G,4EAA4E,EAAE,0DAAuC;IACrH,sEAAsE,EAAE,qDAAiC;IACzG,gFAAgF,EAAE,+DAA2C;IAC7H,+CAA+C,EAAE,uBAAU;CAC3D,CAAC;AAGF,kCAAkC;AAElC,oDAAyD;AACzD,6BAAgB,CAAC,KAAK,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;AAGjD,2CAAyB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../generated/index.ts"],"names":[],"mappings":";AAAA,oCAAoC;;;;;;;;;;;;;;;;AAEpC,8CAA4C;AAG5C,4BAA4B;AAE5B,IAAM,WAAW,GAAG,8y+CAA8y+C,CAAC;AAGn0+C,4BAA4B;AAE5B,gEAA0E;AAC1E,gEAA6E;AAC7E,gEAAiF;AACjF,gEAAoF;AACpF,gEAA+E;AAC/E,gEAAkF;AAClF,gEAAmF;AACnF,gEAAsF;AACtF,gEAAsF;AACtF,4DAAqF;AACrF,iEAAgF;AAChF,iEAA0F;AAC1F,iEAAmF;AACnF,iEAA6F;AAC7F,4DAAsE;AACtE,4DAA8E;AAC9E,4DAA6E;AAC7E,4DAA2E;AAC3E,4DAAmF;AACnF,4DAA+E;AAC/E,8DAAsE;AACtE,4DAAuF;AACvF,8DAA8E;AAC9E,4DAAkF;AAClF,6DAA4E;AAC5E,6DAAsF;AACtF,gDAA+C;AAE/C,IAAM,WAAW,GAAG;IACnB,kEAAkE,EAAE,kDAA6B;IACjG,qEAAqE,EAAE,qDAAgC;IACvG,yEAAyE,EAAE,yDAAoC;IAC/G,4EAA4E,EAAE,4DAAuC;IACrH,uEAAuE,EAAE,uDAAkC;IAC3G,0EAA0E,EAAE,0DAAqC;IACjH,2EAA2E,EAAE,2DAAsC;IACnH,8EAA8E,EAAE,8DAAyC;IACzH,8EAA8E,EAAE,8DAAyC;IACzH,+EAA+E,EAAE,6DAA0C;IAC3H,wEAAwE,EAAE,yDAAmC;IAC7G,kFAAkF,EAAE,mEAA6C;IACjI,2EAA2E,EAAE,4DAAsC;IACnH,qFAAqF,EAAE,sEAAgD;IACvI,gEAAgE,EAAE,8CAA2B;IAC7F,wEAAwE,EAAE,sDAAmC;IAC7G,uEAAuE,EAAE,qDAAkC;IAC3G,qEAAqE,EAAE,mDAAgC;IACvG,6EAA6E,EAAE,2DAAwC;IACvH,yEAAyE,EAAE,uDAAoC;IAC/G,+DAA+D,EAAE,8CAA0B;IAC3F,iFAAiF,EAAE,+DAA4C;IAC/H,uEAAuE,EAAE,sDAAkC;IAC3G,4EAA4E,EAAE,0DAAuC;IACrH,sEAAsE,EAAE,qDAAiC;IACzG,gFAAgF,EAAE,+DAA2C;IAC7H,+CAA+C,EAAE,uBAAU;CAC3D,CAAC;AAGF,kCAAkC;AAElC,oDAAyD;AACzD,6BAAgB,CAAC,KAAK,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;AAGjD,2CAAyB"}
@@ -1,14 +1,6 @@
1
1
  /** Load Dependency Source Graphs */
2
2
 
3
- import '@dagrejs/graphlib';
4
- import '@proteinjs/reflection';
5
3
  import '@proteinjs/reflection-build-test-b';
6
- import '@proteinjs/util';
7
- import '@proteinjs/util-node';
8
- import 'globby';
9
- import 'gulp';
10
- import 'gulp-shell';
11
- import 'jsesc';
12
4
 
13
5
  /** Generate Source Graph */
14
6
 
@@ -8,3 +8,10 @@
8
8
  * If omitted, we re-export from '<packageRoot>/index'.
9
9
  */
10
10
  export declare function writeGeneratedIndex(packageDir: string, packageGeneratedDir: string, generatedIndexPath: string, sourceRootsRel?: string | string[], publicEntryRelOverride?: string): Promise<void>;
11
+ /**
12
+ * True iff the dependency ships a reflection source graph (`dist/generated/index.js`, the
13
+ * artifact `writeGeneratedIndex` itself emits). Located by walking `node_modules` up from the
14
+ * consuming package — the npm layout lookup, immune to `exports`-map resolution restrictions
15
+ * and correct for workspace symlinks (the symlinked package root carries its own dist).
16
+ */
17
+ export declare function dependencyHasSourceGraph(packageDir: string, packageName: string): boolean;
@@ -62,7 +62,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
62
62
  return (mod && mod.__esModule) ? mod : { "default": mod };
63
63
  };
64
64
  Object.defineProperty(exports, "__esModule", { value: true });
65
- exports.writeGeneratedIndex = void 0;
65
+ exports.dependencyHasSourceGraph = exports.writeGeneratedIndex = void 0;
66
+ var fs = __importStar(require("fs"));
66
67
  var path = __importStar(require("path"));
67
68
  var util_node_1 = require("@proteinjs/util-node");
68
69
  var util_1 = require("@proteinjs/util");
@@ -179,11 +180,18 @@ function loadDependencySourceGraphs(packageDir, packageJson) {
179
180
  .filter(Boolean);
180
181
  if (packageJson.dependencies) {
181
182
  for (var packageName in packageJson.dependencies) {
182
- // Skip any packages listed in SKIP_REFLECTION_LOAD
183
+ // Skip any packages listed in SKIP_REFLECTION_LOAD (deliberate opt-out for deps that
184
+ // DO carry a graph but should not load in this package's context)
183
185
  if (skipList.includes(packageName)) {
184
186
  continue;
185
187
  }
186
- if (packageName.startsWith('@material-ui')) {
188
+ // Only reflection-built dependencies belong here: the import exists solely to run the
189
+ // dependency's generated index (SourceRepository.merge of its source graph). A dep is
190
+ // reflection-built iff it ships the artifact this same codegen emits —
191
+ // dist/generated/index.js. Everything else (icon sets, ui libs, utilities) contributed
192
+ // nothing at runtime while pinning its entire dependency root into every consumer's
193
+ // bundle (observed: ~19 duplicate FontAwesome set copies across the app bundle).
194
+ if (!dependencyHasSourceGraph(packageDir, packageName)) {
187
195
  continue;
188
196
  }
189
197
  var specifier = getDependencyImportSpecifier(packageDir, packageName);
@@ -195,6 +203,31 @@ function loadDependencySourceGraphs(packageDir, packageJson) {
195
203
  }
196
204
  return code;
197
205
  }
206
+ /**
207
+ * True iff the dependency ships a reflection source graph (`dist/generated/index.js`, the
208
+ * artifact `writeGeneratedIndex` itself emits). Located by walking `node_modules` up from the
209
+ * consuming package — the npm layout lookup, immune to `exports`-map resolution restrictions
210
+ * and correct for workspace symlinks (the symlinked package root carries its own dist).
211
+ */
212
+ function dependencyHasSourceGraph(packageDir, packageName) {
213
+ var currentDir = packageDir;
214
+ // Upward fs walk; exits are internal (found / package root / fs root).
215
+ for (;;) {
216
+ var candidate = path.join(currentDir, 'node_modules', packageName);
217
+ if (fs.existsSync(path.join(candidate, 'dist', 'generated', 'index.js'))) {
218
+ return true;
219
+ }
220
+ if (fs.existsSync(candidate)) {
221
+ return false;
222
+ }
223
+ var parent_1 = path.dirname(currentDir);
224
+ if (parent_1 === currentDir) {
225
+ return false;
226
+ }
227
+ currentDir = parent_1;
228
+ }
229
+ }
230
+ exports.dependencyHasSourceGraph = dependencyHasSourceGraph;
198
231
  /**
199
232
  * Determine an import specifier for a dependency that respects its package.json exports or main/module fields.
200
233
  */
@@ -303,11 +336,11 @@ function removeNonLoadableNode(packageScope, buildTargetPackageName, sourceGraph
303
336
  shouldRemove = false;
304
337
  continue;
305
338
  }
306
- var parent_1 = sourceGraph.node(outEdge.w);
307
- if (!parent_1) {
339
+ var parent_2 = sourceGraph.node(outEdge.w);
340
+ if (!parent_2) {
308
341
  continue;
309
342
  }
310
- if (!removeNonLoadableNode(parent_1, buildTargetPackageName, sourceGraph)) {
343
+ if (!removeNonLoadableNode(parent_2, buildTargetPackageName, sourceGraph)) {
311
344
  shouldRemove = false;
312
345
  }
313
346
  }
@@ -1 +1 @@
1
- {"version":3,"file":"writeGeneratedIndex.js","sourceRoot":"","sources":["../../../../../../src/codegen/writeGeneratedIndex.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"writeGeneratedIndex.js","sourceRoot":"","sources":["../../../../../../src/codegen/writeGeneratedIndex.ts"],"names":[],"mappings":"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"}
@@ -1,10 +1,2 @@
1
1
  /** Load Dependency Source Graphs */
2
- import '@dagrejs/graphlib';
3
- import '@proteinjs/reflection';
4
- import '@proteinjs/util';
5
- import '@proteinjs/util-node';
6
- import 'globby';
7
- import 'gulp';
8
- import 'gulp-shell';
9
- import 'jsesc';
10
2
  export * from '../index';
@@ -15,14 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
16
  };
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
- require("@dagrejs/graphlib");
19
- require("@proteinjs/reflection");
20
- require("@proteinjs/util");
21
- require("@proteinjs/util-node");
22
- require("globby");
23
- require("gulp");
24
- require("gulp-shell");
25
- require("jsesc");
26
18
  /** Generate Source Graph */
27
19
  var sourceGraph = "{\"options\":{\"directed\":true,\"multigraph\":false,\"compound\":false},\"nodes\":[{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/b/src/LoadableForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"{ z: number }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/{ z: number }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection/Loadable\"},{\"v\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"OptionalLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/b/src/LoadableForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"{ z: number }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/{ z: number }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-b/implementsOptionalLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"implementsOptionalLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/b/src/LoadableForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-b/implementsOptionalLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"OptionalLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"OptionalLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/b/src/LoadableForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"properties\":[{\"name\":\"z\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"OptionalLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/b/src/LoadableForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignInterface\",\"properties\":[{\"name\":\"z\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-b/ImplementsOptionalLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"ImplementsOptionalLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/b/src/LoadableForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-b/ImplementsOptionalLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"OptionalLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/b/src/LoadableForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"OptionalLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/b/src/LoadableForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/ImplementsOptionalLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"ImplementsOptionalLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/b/src/LoadableForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-b/ImplementsOptionalLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"OptionalLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}}],\"edges\":[{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignType\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-b/implementsOptionalLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignInterface\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-b/ImplementsOptionalLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-b/ImplementsOptionalLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/OptionalLoadableForeignAbstractClass\",\"value\":\"extends class\"}]}";
28
20
  /** Generate Source Links */
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../generated/index.ts"],"names":[],"mappings":";AAAA,oCAAoC;;;;;;;;;;;;;;;;AAEpC,6BAA2B;AAC3B,iCAA+B;AAC/B,2BAAyB;AACzB,gCAA8B;AAC9B,kBAAgB;AAChB,gBAAc;AACd,sBAAoB;AACpB,iBAAe;AAGf,4BAA4B;AAE5B,IAAM,WAAW,GAAG,86UAA86U,CAAC;AAGn8U,4BAA4B;AAE5B,kEAAmF;AACnF,kEAAwF;AACxF,kEAA0E;AAC1E,kEAAkF;AAClF,kEAA4F;AAE5F,IAAM,WAAW,GAAG;IACnB,0EAA0E,EAAE,2DAAqC;IACjH,+EAA+E,EAAE,gEAA0C;IAC3H,iEAAiE,EAAE,kDAA4B;IAC/F,yEAAyE,EAAE,0DAAoC;IAC/G,mFAAmF,EAAE,oEAA8C;CACnI,CAAC;AAGF,kCAAkC;AAElC,oDAAyD;AACzD,6BAAgB,CAAC,KAAK,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;AAGjD,2CAAyB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../generated/index.ts"],"names":[],"mappings":";AAAA,oCAAoC;;;;;;;;;;;;;;;;AAIpC,4BAA4B;AAE5B,IAAM,WAAW,GAAG,86UAA86U,CAAC;AAGn8U,4BAA4B;AAE5B,kEAAmF;AACnF,kEAAwF;AACxF,kEAA0E;AAC1E,kEAAkF;AAClF,kEAA4F;AAE5F,IAAM,WAAW,GAAG;IACnB,0EAA0E,EAAE,2DAAqC;IACjH,+EAA+E,EAAE,gEAA0C;IAC3H,iEAAiE,EAAE,kDAA4B;IAC/F,yEAAyE,EAAE,0DAAoC;IAC/G,mFAAmF,EAAE,oEAA8C;CACnI,CAAC;AAGF,kCAAkC;AAElC,oDAAyD;AACzD,6BAAgB,CAAC,KAAK,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;AAGjD,2CAAyB"}