@proteinjs/reflection-build 1.4.12 → 2.0.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.
- package/CHANGELOG.md +45 -0
- package/dist/src/BuildContract.d.ts +69 -0
- package/dist/src/BuildContract.js +393 -0
- package/dist/src/BuildContract.js.map +1 -0
- package/dist/src/ReflectionDoctor.d.ts +95 -0
- package/dist/src/ReflectionDoctor.js +588 -0
- package/dist/src/ReflectionDoctor.js.map +1 -0
- package/dist/src/build.d.ts +5 -1
- package/dist/src/build.js +13 -77
- package/dist/src/build.js.map +1 -1
- package/dist/src/codegen/writeGeneratedIndex.d.ts +25 -0
- package/dist/src/codegen/writeGeneratedIndex.js +89 -13
- package/dist/src/codegen/writeGeneratedIndex.js.map +1 -1
- package/dist/src/parser/createGraphBuilder.js +30 -5
- package/dist/src/parser/createGraphBuilder.js.map +1 -1
- package/dist/src/runBuild.js +12 -2
- package/dist/src/runBuild.js.map +1 -1
- package/dist/src/runDoctor.d.ts +2 -0
- package/dist/src/runDoctor.js +83 -0
- package/dist/src/runDoctor.js.map +1 -0
- package/dist/test/DependencySourceGraphGate.test.d.ts +1 -0
- package/dist/test/DependencySourceGraphGate.test.js +78 -0
- package/dist/test/DependencySourceGraphGate.test.js.map +1 -0
- package/dist/test/GraphEmitRelativePaths.test.d.ts +1 -0
- package/dist/test/GraphEmitRelativePaths.test.js +162 -0
- package/dist/test/GraphEmitRelativePaths.test.js.map +1 -0
- package/dist/test/ReflectionDoctor.test.d.ts +1 -0
- package/dist/test/ReflectionDoctor.test.js +316 -0
- package/dist/test/ReflectionDoctor.test.js.map +1 -0
- package/dist/test/TestSubpathContract.test.d.ts +1 -0
- package/dist/test/TestSubpathContract.test.js +260 -0
- package/dist/test/TestSubpathContract.test.js.map +1 -0
- package/dist/test/ValidateDontMutate.test.d.ts +1 -0
- package/dist/test/ValidateDontMutate.test.js +238 -0
- package/dist/test/ValidateDontMutate.test.js.map +1 -0
- package/dist/test/examples/source-repository/a/generated/index.d.ts +0 -8
- package/dist/test/examples/source-repository/a/generated/index.js +1 -9
- package/dist/test/examples/source-repository/a/generated/index.js.map +1 -1
- package/dist/test/examples/source-repository/b/generated/index.d.ts +0 -8
- package/dist/test/examples/source-repository/b/generated/index.js +1 -9
- package/dist/test/examples/source-repository/b/generated/index.js.map +1 -1
- package/package.json +5 -4
- package/src/BuildContract.ts +384 -0
- package/src/ReflectionDoctor.ts +589 -0
- package/src/build.ts +19 -56
- package/src/codegen/writeGeneratedIndex.ts +80 -9
- package/src/parser/createGraphBuilder.ts +9 -4
- package/src/runBuild.ts +7 -1
- package/src/runDoctor.ts +34 -0
- package/test/DependencySourceGraphGate.test.ts +61 -0
- package/test/GraphEmitRelativePaths.test.ts +95 -0
- package/test/ReflectionDoctor.test.ts +193 -0
- package/test/TestSubpathContract.test.ts +148 -0
- package/test/ValidateDontMutate.test.ts +126 -0
- package/test/examples/source-repository/a/dist/BuildContract.d.ts +69 -0
- package/test/examples/source-repository/a/dist/BuildContract.js +393 -0
- package/test/examples/source-repository/a/dist/BuildContract.js.map +1 -0
- package/test/examples/source-repository/a/dist/build.d.ts +5 -1
- package/test/examples/source-repository/a/dist/build.js +13 -77
- package/test/examples/source-repository/a/dist/build.js.map +1 -1
- package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.d.ts +25 -0
- package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js +89 -13
- package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js.map +1 -1
- package/test/examples/source-repository/a/dist/generated/index.d.ts +0 -8
- package/test/examples/source-repository/a/dist/generated/index.js +1 -9
- package/test/examples/source-repository/a/dist/generated/index.js.map +1 -1
- package/test/examples/source-repository/a/dist/parser/createGraphBuilder.js +30 -5
- package/test/examples/source-repository/a/dist/parser/createGraphBuilder.js.map +1 -1
- package/test/examples/source-repository/a/dist/runBuild.js +12 -2
- package/test/examples/source-repository/a/dist/runBuild.js.map +1 -1
- package/test/examples/source-repository/a/generated/index.ts +1 -9
- package/test/examples/source-repository/b/dist/BuildContract.d.ts +69 -0
- package/test/examples/source-repository/b/dist/BuildContract.js +393 -0
- package/test/examples/source-repository/b/dist/BuildContract.js.map +1 -0
- package/test/examples/source-repository/b/dist/build.d.ts +5 -1
- package/test/examples/source-repository/b/dist/build.js +13 -77
- package/test/examples/source-repository/b/dist/build.js.map +1 -1
- package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.d.ts +25 -0
- package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js +89 -13
- package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js.map +1 -1
- package/test/examples/source-repository/b/dist/generated/index.d.ts +0 -8
- package/test/examples/source-repository/b/dist/generated/index.js +1 -9
- package/test/examples/source-repository/b/dist/generated/index.js.map +1 -1
- package/test/examples/source-repository/b/dist/parser/createGraphBuilder.js +30 -5
- package/test/examples/source-repository/b/dist/parser/createGraphBuilder.js.map +1 -1
- package/test/examples/source-repository/b/dist/runBuild.js +12 -2
- package/test/examples/source-repository/b/dist/runBuild.js.map +1 -1
- package/test/examples/source-repository/b/generated/index.ts +1 -10
|
@@ -1,4 +1,27 @@
|
|
|
1
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 (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
2
25
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
26
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
27
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -37,6 +60,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
37
60
|
};
|
|
38
61
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
62
|
exports.createGraphBuilder = void 0;
|
|
63
|
+
var path = __importStar(require("path"));
|
|
40
64
|
var typescript_parser_1 = require("../../modules/typescript-parser");
|
|
41
65
|
var reflection_1 = require("@proteinjs/reflection");
|
|
42
66
|
var util_1 = require("@proteinjs/util");
|
|
@@ -49,10 +73,11 @@ function createGraphBuilder(graph, packageJson, packageJsonDir) {
|
|
|
49
73
|
var _this = this;
|
|
50
74
|
var packageName = packageJson.name;
|
|
51
75
|
return function (parsedFile) { return __awaiter(_this, void 0, void 0, function () {
|
|
52
|
-
var _i, _a, declaration, packageNameFinder, variableDeclaration, typeAliasDeclaration, classDeclaration, _b, _c, parentInterface, _d, _e, parentClass, interfaceDeclaration, _f, _g, parentInterface;
|
|
76
|
+
var filePath, _i, _a, declaration, packageNameFinder, variableDeclaration, typeAliasDeclaration, classDeclaration, _b, _c, parentInterface, _d, _e, parentClass, interfaceDeclaration, _f, _g, parentInterface;
|
|
53
77
|
return __generator(this, function (_h) {
|
|
54
78
|
switch (_h.label) {
|
|
55
79
|
case 0:
|
|
80
|
+
filePath = path.relative(packageJsonDir, parsedFile.filePath);
|
|
56
81
|
_i = 0, _a = parsedFile.declarations;
|
|
57
82
|
_h.label = 1;
|
|
58
83
|
case 1:
|
|
@@ -66,7 +91,7 @@ function createGraphBuilder(graph, packageJson, packageJsonDir) {
|
|
|
66
91
|
}
|
|
67
92
|
packageNameFinder = new PackageNameFinder_1.PackageNameFinder(parsedFile, packageJsonDir, packageName);
|
|
68
93
|
if (!(0, util_1.isInstanceOf)(declaration, typescript_parser_1.VariableDeclaration)) return [3 /*break*/, 3];
|
|
69
|
-
return [4 /*yield*/, (0, createVariableDeclaration_1.createVariableDeclaration)(declaration, packageNameFinder,
|
|
94
|
+
return [4 /*yield*/, (0, createVariableDeclaration_1.createVariableDeclaration)(declaration, packageNameFinder, filePath)];
|
|
70
95
|
case 2:
|
|
71
96
|
variableDeclaration = _h.sent();
|
|
72
97
|
graph.setNode(variableDeclaration.qualifiedName, Object.assign(variableDeclaration, { sourceType: reflection_1.SourceType.variable }));
|
|
@@ -74,7 +99,7 @@ function createGraphBuilder(graph, packageJson, packageJsonDir) {
|
|
|
74
99
|
return [3 /*break*/, 9];
|
|
75
100
|
case 3:
|
|
76
101
|
if (!(0, util_1.isInstanceOf)(declaration, typescript_parser_1.TypeAliasDeclaration)) return [3 /*break*/, 5];
|
|
77
|
-
return [4 /*yield*/, (0, createTypeAliasDeclaration_1.createTypeAliasDeclaration)(declaration, packageNameFinder,
|
|
102
|
+
return [4 /*yield*/, (0, createTypeAliasDeclaration_1.createTypeAliasDeclaration)(declaration, packageNameFinder, filePath)];
|
|
78
103
|
case 4:
|
|
79
104
|
typeAliasDeclaration = _h.sent();
|
|
80
105
|
graph.setNode(typeAliasDeclaration.qualifiedName, Object.assign(typeAliasDeclaration, { sourceType: reflection_1.SourceType.typeAlias }));
|
|
@@ -82,7 +107,7 @@ function createGraphBuilder(graph, packageJson, packageJsonDir) {
|
|
|
82
107
|
return [3 /*break*/, 9];
|
|
83
108
|
case 5:
|
|
84
109
|
if (!(0, util_1.isInstanceOf)(declaration, typescript_parser_1.ClassDeclaration)) return [3 /*break*/, 7];
|
|
85
|
-
return [4 /*yield*/, (0, createClassDeclaration_1.createClassDeclaration)(declaration, packageNameFinder,
|
|
110
|
+
return [4 /*yield*/, (0, createClassDeclaration_1.createClassDeclaration)(declaration, packageNameFinder, filePath)];
|
|
86
111
|
case 6:
|
|
87
112
|
classDeclaration = _h.sent();
|
|
88
113
|
graph.setNode(classDeclaration.qualifiedName, Object.assign(classDeclaration, { sourceType: reflection_1.SourceType.class }));
|
|
@@ -109,7 +134,7 @@ function createGraphBuilder(graph, packageJson, packageJsonDir) {
|
|
|
109
134
|
return [3 /*break*/, 9];
|
|
110
135
|
case 7:
|
|
111
136
|
if (!(0, util_1.isInstanceOf)(declaration, typescript_parser_1.InterfaceDeclaration)) return [3 /*break*/, 9];
|
|
112
|
-
return [4 /*yield*/, (0, createInterfaceDeclaration_1.createInterfaceDeclaration)(declaration, packageNameFinder,
|
|
137
|
+
return [4 /*yield*/, (0, createInterfaceDeclaration_1.createInterfaceDeclaration)(declaration, packageNameFinder, filePath)];
|
|
113
138
|
case 8:
|
|
114
139
|
interfaceDeclaration = _h.sent();
|
|
115
140
|
graph.setNode(interfaceDeclaration.qualifiedName, Object.assign(interfaceDeclaration, { sourceType: reflection_1.SourceType.interface }));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createGraphBuilder.js","sourceRoot":"","sources":["../../../../../../src/parser/createGraphBuilder.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"createGraphBuilder.js","sourceRoot":"","sources":["../../../../../../src/parser/createGraphBuilder.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA6B;AAE7B,qEAMyC;AACzC,oDAA6F;AAC7F,wCAA+C;AAC/C,+EAA8E;AAC9E,+DAA8D;AAC9D,iFAAgF;AAChF,yEAAwE;AACxE,iFAAgF;AAEhF,SAAgB,kBAAkB,CAAC,KAAqB,EAAE,WAAgB,EAAE,cAAsB;IAAlG,iBAkHC;IAjHC,IAAM,WAAW,GAAG,WAAW,CAAC,IAAI,CAAC;IACrC,OAAO,UAAO,UAAgB;;;;;oBAItB,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,cAAc,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC;0BACnB,EAAvB,KAAA,UAAU,CAAC,YAAY;;;yBAAvB,CAAA,cAAuB,CAAA;oBAAtC,WAAW;oBACpB,IAAI,CAAE,WAAmB,CAAC,YAAY,CAAC,EAAE;wBACvC,wBAAS;qBACV;oBAED,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE;wBACrB,wBAAS;qBACV;oBAEK,iBAAiB,GAAG,IAAI,qCAAiB,CAAC,UAAU,EAAE,cAAc,EAAE,WAAW,CAAC,CAAC;yBACrF,IAAA,mBAAY,EAAC,WAAW,EAAE,uCAAyB,CAAC,EAApD,wBAAoD;oBAC1B,qBAAM,IAAA,qDAAyB,EACzD,WAAwC,EACxC,iBAAiB,EACjB,QAAQ,CACT,EAAA;;oBAJK,mBAAmB,GAAG,SAI3B;oBACD,KAAK,CAAC,OAAO,CACX,mBAAmB,CAAC,aAAa,EACjC,MAAM,CAAC,MAAM,CAAC,mBAAmB,EAAE,EAAE,UAAU,EAAE,uBAAU,CAAC,QAAQ,EAAE,CAAC,CACxE,CAAC;oBACF,uBAAuB,CACrB,mBAAmB,CAAC,IAAI,EACxB,mBAAmB,CAAC,aAAa,EACjC,+BAAkB,CAAC,OAAO,EAC1B,KAAK,CACN,CAAC;;;yBACO,IAAA,mBAAY,EAAC,WAAW,EAAE,wCAA0B,CAAC,EAArD,wBAAqD;oBACjC,qBAAM,IAAA,uDAA0B,EAC3D,WAAyC,EACzC,iBAAiB,EACjB,QAAQ,CACT,EAAA;;oBAJK,oBAAoB,GAAG,SAI5B;oBACD,KAAK,CAAC,OAAO,CACX,oBAAoB,CAAC,aAAa,EAClC,MAAM,CAAC,MAAM,CAAC,oBAAoB,EAAE,EAAE,UAAU,EAAE,uBAAU,CAAC,SAAS,EAAE,CAAC,CAC1E,CAAC;oBACF,uBAAuB,CACrB,oBAAoB,EACpB,oBAAoB,CAAC,aAAa,EAClC,+BAAkB,CAAC,WAAW,EAC9B,KAAK,CACN,CAAC;;;yBACO,IAAA,mBAAY,EAAC,WAAW,EAAE,oCAAsB,CAAC,EAAjD,wBAAiD;oBACjC,qBAAM,IAAA,+CAAsB,EACnD,WAAqC,EACrC,iBAAiB,EACjB,QAAQ,CACT,EAAA;;oBAJK,gBAAgB,GAAG,SAIxB;oBACD,KAAK,CAAC,OAAO,CACX,gBAAgB,CAAC,aAAa,EAC9B,MAAM,CAAC,MAAM,CAAC,gBAAgB,EAAE,EAAE,UAAU,EAAE,uBAAU,CAAC,KAAK,EAAE,CAAC,CAClE,CAAC;oBACF,WAAqE,EAAvC,KAAA,gBAAgB,CAAC,sBAAsB,EAAvC,cAAuC,EAAvC,IAAuC,EAAE;wBAA5D,eAAe;wBACxB,IAAI,eAAe,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;4BAC/C,SAAS;yBACV;wBAED,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,eAAe,CAAC,aAAa,CAAC,EAAE;4BACjD,KAAK,CAAC,OAAO,CAAC,eAAe,CAAC,aAAa,CAAC,CAAC;yBAC9C;wBAED,KAAK,CAAC,OAAO,CACX,gBAAgB,CAAC,aAAa,EAC9B,eAAe,CAAC,aAAa,EAC7B,+BAAkB,CAAC,mBAAmB,CACvC,CAAC;qBACH;oBAED,WAA8D,EAApC,KAAA,gBAAgB,CAAC,mBAAmB,EAApC,cAAoC,EAApC,IAAoC,EAAE;wBAArD,WAAW;wBACpB,IAAI,WAAW,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;4BAC3C,SAAS;yBACV;wBAED,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,aAAa,CAAC,EAAE;4BAC7C,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,aAAa,CAAC,CAAC;yBAC1C;wBAED,KAAK,CAAC,OAAO,CAAC,gBAAgB,CAAC,aAAa,EAAE,WAAW,CAAC,aAAa,EAAE,+BAAkB,CAAC,YAAY,CAAC,CAAC;qBAC3G;;;yBACQ,IAAA,mBAAY,EAAC,WAAW,EAAE,wCAA0B,CAAC,EAArD,wBAAqD;oBACjC,qBAAM,IAAA,uDAA0B,EAC3D,WAAyC,EACzC,iBAAiB,EACjB,QAAQ,CACT,EAAA;;oBAJK,oBAAoB,GAAG,SAI5B;oBACD,KAAK,CAAC,OAAO,CACX,oBAAoB,CAAC,aAAa,EAClC,MAAM,CAAC,MAAM,CAAC,oBAAoB,EAAE,EAAE,UAAU,EAAE,uBAAU,CAAC,SAAS,EAAE,CAAC,CAC1E,CAAC;oBACF,WAAgE,EAAlC,KAAA,oBAAoB,CAAC,aAAa,EAAlC,cAAkC,EAAlC,IAAkC,EAAE;wBAAvD,eAAe;wBACxB,IAAI,eAAe,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;4BAC/C,SAAS;yBACV;wBAED,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,eAAe,CAAC,aAAa,CAAC,EAAE;4BACjD,KAAK,CAAC,OAAO,CAAC,eAAe,CAAC,aAAa,CAAC,CAAC;yBAC9C;wBAED,KAAK,CAAC,OAAO,CACX,oBAAoB,CAAC,aAAa,EAClC,eAAe,CAAC,aAAa,EAC7B,+BAAkB,CAAC,gBAAgB,CACpC,CAAC;qBACH;;;oBAvGqB,IAAuB,CAAA;;;;;SA0GlD,CAAC;AACJ,CAAC;AAlHD,gDAkHC;AAED,SAAS,uBAAuB,CAC9B,oBAA0C,EAC1C,mBAA2B,EAC3B,kBAAsC,EACtC,KAAqB;IAErB,IAAI,CAAC,oBAAoB,CAAC,aAAa,EAAE;QACvC,OAAO;KACR;IAED,KAAyB,UAAkC,EAAlC,KAAA,oBAAoB,CAAC,aAAa,EAAlC,cAAkC,EAAlC,IAAkC,EAAE;QAAxD,IAAM,UAAU,SAAA;QACnB,IAAI,UAAU,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;YACnC,SAAS;SACV;QAED,IAAI,UAAU,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;YAC1C,SAAS;SACV;QAED,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,aAAa,CAAC,EAAE;YAC5C,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;SACzC;QAED,KAAK,CAAC,OAAO,CAAC,mBAAmB,EAAE,UAAU,CAAC,aAAa,EAAE,kBAAkB,CAAC,CAAC;KAClF;AACH,CAAC"}
|
|
@@ -40,12 +40,22 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
40
40
|
var build_1 = require("./build");
|
|
41
41
|
(function () {
|
|
42
42
|
return __awaiter(this, void 0, void 0, function () {
|
|
43
|
+
var error_1;
|
|
43
44
|
return __generator(this, function (_a) {
|
|
44
45
|
switch (_a.label) {
|
|
45
|
-
case 0:
|
|
46
|
+
case 0:
|
|
47
|
+
_a.trys.push([0, 2, , 3]);
|
|
48
|
+
return [4 /*yield*/, (0, build_1.build)({ fix: process.argv.includes('--fix') })];
|
|
46
49
|
case 1:
|
|
47
50
|
_a.sent();
|
|
48
|
-
return [
|
|
51
|
+
return [3 /*break*/, 3];
|
|
52
|
+
case 2:
|
|
53
|
+
error_1 = _a.sent();
|
|
54
|
+
// Contract conflicts are a diagnosis for humans — print the message, not a stack trace.
|
|
55
|
+
console.error(error_1 instanceof Error ? error_1.message : error_1);
|
|
56
|
+
process.exit(1);
|
|
57
|
+
return [3 /*break*/, 3];
|
|
58
|
+
case 3: return [2 /*return*/];
|
|
49
59
|
}
|
|
50
60
|
});
|
|
51
61
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runBuild.js","sourceRoot":"","sources":["../../../../../src/runBuild.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,iCAAgC;AAEhC,CAAC
|
|
1
|
+
{"version":3,"file":"runBuild.js","sourceRoot":"","sources":["../../../../../src/runBuild.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,iCAAgC;AAEhC,CAAC;;;;;;;oBAEG,qBAAM,IAAA,aAAK,EAAC,EAAE,GAAG,EAAE,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC,EAAA;;oBAApD,SAAoD,CAAC;;;;oBAErD,wFAAwF;oBACxF,OAAO,CAAC,KAAK,CAAC,OAAK,YAAY,KAAK,CAAC,CAAC,CAAC,OAAK,CAAC,OAAO,CAAC,CAAC,CAAC,OAAK,CAAC,CAAC;oBAC9D,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;;;;;;CAEnB,CAAC,EAAE,CAAC"}
|
|
@@ -1,19 +1,11 @@
|
|
|
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
|
|
|
15
7
|
const sourceGraph =
|
|
16
|
-
'{"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"}]}';
|
|
8
|
+
'{"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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":"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"}]}';
|
|
17
9
|
|
|
18
10
|
/** Generate Source Links */
|
|
19
11
|
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
export interface BuildContractOptions {
|
|
2
|
+
/** Root of the package being built (contains package.json) */
|
|
3
|
+
packageDir: string;
|
|
4
|
+
/** First REFLECTION_SOURCE_DIRS entry; 'src' for prod builds */
|
|
5
|
+
primaryRoot: string;
|
|
6
|
+
/** REFLECTION_DIST_DIR or 'dist' */
|
|
7
|
+
distDirRel: string;
|
|
8
|
+
/** Absolute path to the generated index .ts this invocation emits */
|
|
9
|
+
generatedIndexPath: string;
|
|
10
|
+
/** Write conflicting values to the contract instead of failing the build */
|
|
11
|
+
fix: boolean;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* The package-config contract of a reflection build (task #104 §3.3, validate-don't-mutate).
|
|
15
|
+
*
|
|
16
|
+
* A build's artifact is only usable if the package's config points at it, so reflection-build
|
|
17
|
+
* owns that config as a contract instead of silently rewriting files on every build:
|
|
18
|
+
*
|
|
19
|
+
* - ABSENT config is completed in place (a fresh or copied package gets main/types, subpath
|
|
20
|
+
* mappings, stubs — the zero-ceremony workflow survives).
|
|
21
|
+
* - EXISTING config that conflicts with the contract fails the build with a friendly error
|
|
22
|
+
* (plain words, why it matters, the exact lines to paste, `--fix` offered first) and leaves
|
|
23
|
+
* every file untouched.
|
|
24
|
+
* - `reflection-build --fix` writes the contract over conflicting values; it is idempotent.
|
|
25
|
+
*
|
|
26
|
+
* Prod builds (primary root 'src') own main/types + the tsconfig include. Subpath builds
|
|
27
|
+
* (primary root e.g. 'test') own the complete subpath contract — root <root>.js/<root>.d.ts
|
|
28
|
+
* stubs, exports/typesVersions mappings, files[] entries, tsconfig excludes (the d51556f0
|
|
29
|
+
* class, generalized): consumers must resolve the subpath to built dist in every install
|
|
30
|
+
* shape and resolution mode, never to sources.
|
|
31
|
+
*/
|
|
32
|
+
export declare class BuildContract {
|
|
33
|
+
private readonly options;
|
|
34
|
+
constructor(options: BuildContractOptions);
|
|
35
|
+
apply(): Promise<void>;
|
|
36
|
+
private applyPackageJson;
|
|
37
|
+
/** Prod builds: main/types point at the built reflection artifact. */
|
|
38
|
+
private settleEntryPoints;
|
|
39
|
+
/** Subpath builds: exports map "." and "./<root>" to the built artifacts. */
|
|
40
|
+
private settleSubpathExports;
|
|
41
|
+
/** Subpath builds: typesVersions carries the subpath's types for node10 resolution. */
|
|
42
|
+
private settleTypesVersions;
|
|
43
|
+
/** Subpath builds: an existing files allowlist must keep shipping the root stubs. */
|
|
44
|
+
private settleFilesAllowlist;
|
|
45
|
+
/**
|
|
46
|
+
* Subpath builds: root stubs that win the node10/paths-mapped file lookup, so every install
|
|
47
|
+
* shape resolves the subpath to built dist — never to sources (the TS6059/ts-jest class).
|
|
48
|
+
*/
|
|
49
|
+
private applyStubs;
|
|
50
|
+
/**
|
|
51
|
+
* tsconfig: include the generated index; on subpath builds, exclude the root stubs from
|
|
52
|
+
* compilation. List membership only — nothing here can conflict.
|
|
53
|
+
*/
|
|
54
|
+
private applyTsconfig;
|
|
55
|
+
/**
|
|
56
|
+
* Settle one string field: absent → set; equal → ok; a dangling value (points at a file
|
|
57
|
+
* that does not exist — npm init's boilerplate `"main": "index.js"`, a stale copy) → set;
|
|
58
|
+
* a value that points at a real, different file is a deliberate setting → conflict.
|
|
59
|
+
*/
|
|
60
|
+
private settleString;
|
|
61
|
+
private formatConflicts;
|
|
62
|
+
private isProd;
|
|
63
|
+
private prodIndexJs;
|
|
64
|
+
private prodIndexDts;
|
|
65
|
+
private subpathIndexJs;
|
|
66
|
+
private subpathIndexDts;
|
|
67
|
+
private stubJsName;
|
|
68
|
+
private stubDtsName;
|
|
69
|
+
}
|