@intelligentgraphics/ig.gfx.packager 3.0.4 → 3.0.5
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/build/{cli-5332deff.js → cli-2c3347fd.js} +10 -9
- package/build/cli-2c3347fd.js.map +1 -0
- package/build/{dependencies-227aca50.js → dependencies-300450ae.js} +2 -2
- package/build/dependencies-300450ae.js.map +1 -0
- package/build/generate-97bb8b12.js +231 -0
- package/build/generate-97bb8b12.js.map +1 -0
- package/build/{index-92b6ba5c.js → index-01b0ddab.js} +2 -2
- package/build/{index-92b6ba5c.js.map → index-01b0ddab.js.map} +1 -1
- package/build/{index-5d595f56.js → index-f59e50ec.js} +5 -5
- package/build/{index-5d595f56.js.map → index-f59e50ec.js.map} +1 -1
- package/build/index.mjs +1 -1
- package/build/{postinstall-7e50da37.js → postinstall-5bba19eb.js} +3 -3
- package/build/{postinstall-7e50da37.js.map → postinstall-5bba19eb.js.map} +1 -1
- package/build/{publishNpm-e2c8347f.js → publishNpm-eb07f766.js} +4 -4
- package/build/{publishNpm-e2c8347f.js.map → publishNpm-eb07f766.js.map} +1 -1
- package/build/{versionFile-b3a65dc8.js → versionFile-af5ed4bc.js} +2 -2
- package/build/{versionFile-b3a65dc8.js.map → versionFile-af5ed4bc.js.map} +1 -1
- package/package.json +2 -2
- package/readme.md +91 -29
- package/build/cli-5332deff.js.map +0 -1
- package/build/dependencies-227aca50.js.map +0 -1
- package/build/generate-a3a16031.js +0 -196
- package/build/generate-a3a16031.js.map +0 -1
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
import ts from 'typescript';
|
|
2
|
+
import 'path';
|
|
3
|
+
import 'fs';
|
|
4
|
+
import 'resolve';
|
|
5
|
+
import 'write-pkg';
|
|
6
|
+
import { h as getPackageTypescriptFiles, b as readPackageCreatorIndex, j as writePackageCreatorIndex } from './cli-2c3347fd.js';
|
|
7
|
+
import 'node:path';
|
|
8
|
+
import 'node:fs';
|
|
9
|
+
import 'axios';
|
|
10
|
+
import 'update-notifier';
|
|
11
|
+
import 'yargs/yargs';
|
|
12
|
+
import 'url';
|
|
13
|
+
import 'glob';
|
|
14
|
+
import 'assert';
|
|
15
|
+
import 'events';
|
|
16
|
+
import 'util';
|
|
17
|
+
import 'inquirer';
|
|
18
|
+
|
|
19
|
+
function capitalizeFirstLetter(string) {
|
|
20
|
+
return (string === null || string === void 0 ? void 0 : string.charAt(0).toUpperCase()) + (string === null || string === void 0 ? void 0 : string.slice(1));
|
|
21
|
+
}
|
|
22
|
+
function parseDefault(value, type) {
|
|
23
|
+
const uType = capitalizeFirstLetter(type);
|
|
24
|
+
if (value === "null") return null;
|
|
25
|
+
switch (uType) {
|
|
26
|
+
case "LengthM":
|
|
27
|
+
case "ArcDEG":
|
|
28
|
+
case "Float":
|
|
29
|
+
return parseFloat(value);
|
|
30
|
+
case "Integer":
|
|
31
|
+
case "Int":
|
|
32
|
+
return parseInt(value);
|
|
33
|
+
case "Boolean":
|
|
34
|
+
case "Bool":
|
|
35
|
+
return value === "true";
|
|
36
|
+
case "Material":
|
|
37
|
+
case "String":
|
|
38
|
+
case "Geometry":
|
|
39
|
+
default:
|
|
40
|
+
return value.replace(/^"/, "").replace(/"$/, "");
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
const findEvaluatorNodes = node => {
|
|
44
|
+
let body;
|
|
45
|
+
if (ts.isModuleDeclaration(node)) {
|
|
46
|
+
body = node.body;
|
|
47
|
+
}
|
|
48
|
+
if (body !== undefined && ts.isModuleDeclaration(body)) {
|
|
49
|
+
body = body.body;
|
|
50
|
+
}
|
|
51
|
+
const evaluators = [];
|
|
52
|
+
if (body !== undefined) {
|
|
53
|
+
ts.forEachChild(body, child => {
|
|
54
|
+
var _child$heritageClause;
|
|
55
|
+
if (!ts.isClassDeclaration(child)) {
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
const isEvaluator = (_child$heritageClause = child.heritageClauses) === null || _child$heritageClause === void 0 ? void 0 : _child$heritageClause.some(clause => {
|
|
59
|
+
if (clause.token !== ts.SyntaxKind.ExtendsKeyword && clause.token !== ts.SyntaxKind.ImplementsKeyword) {
|
|
60
|
+
return false;
|
|
61
|
+
}
|
|
62
|
+
return clause.types.some(type => type.getText().includes("Evaluator"));
|
|
63
|
+
});
|
|
64
|
+
if (isEvaluator) {
|
|
65
|
+
evaluators.push(child);
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
}
|
|
69
|
+
return evaluators;
|
|
70
|
+
};
|
|
71
|
+
function getParameterDeclaration(evaluatorNode) {
|
|
72
|
+
var _evaluatorNode$member;
|
|
73
|
+
let memb = (_evaluatorNode$member = evaluatorNode.members) === null || _evaluatorNode$member === void 0 ? void 0 : _evaluatorNode$member.find(member => {
|
|
74
|
+
var _member$name;
|
|
75
|
+
return (member === null || member === void 0 ? void 0 : (_member$name = member.name) === null || _member$name === void 0 ? void 0 : _member$name.getText()) == "Create";
|
|
76
|
+
});
|
|
77
|
+
if (memb && ts.isMethodDeclaration(memb)) {
|
|
78
|
+
return memb.parameters[2];
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
function getModuleName(sourceFile) {
|
|
82
|
+
let fullName = "";
|
|
83
|
+
if (ts.isModuleDeclaration(sourceFile)) {
|
|
84
|
+
fullName += sourceFile.name.getText();
|
|
85
|
+
let packageB = sourceFile.body;
|
|
86
|
+
if (ts.isModuleDeclaration(packageB)) {
|
|
87
|
+
fullName += "." + packageB.name.getText();
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
return fullName;
|
|
91
|
+
}
|
|
92
|
+
function genParameters(properties) {
|
|
93
|
+
return properties.map((symbol, i) => {
|
|
94
|
+
var _symbol$getDeclaratio;
|
|
95
|
+
const parameter = {
|
|
96
|
+
Name: symbol.name,
|
|
97
|
+
Description: undefined,
|
|
98
|
+
Type: "String",
|
|
99
|
+
Default: undefined,
|
|
100
|
+
DisplayIndex: i + 1
|
|
101
|
+
};
|
|
102
|
+
if (parameter.Name.length > 45) {
|
|
103
|
+
throw new Error(`Parameter name length >45 '${parameter.Name}'`);
|
|
104
|
+
}
|
|
105
|
+
let declaration = (_symbol$getDeclaratio = symbol.getDeclarations()) === null || _symbol$getDeclaratio === void 0 ? void 0 : _symbol$getDeclaratio[0];
|
|
106
|
+
let documentationComment = symbol.getDocumentationComment(undefined);
|
|
107
|
+
let checkLinksSymbol = symbol;
|
|
108
|
+
while (checkLinksSymbol !== undefined && declaration === undefined) {
|
|
109
|
+
const links = checkLinksSymbol.links;
|
|
110
|
+
if (links !== null && links !== void 0 && links.syntheticOrigin) {
|
|
111
|
+
var _links$syntheticOrigi;
|
|
112
|
+
declaration = (_links$syntheticOrigi = links.syntheticOrigin.getDeclarations()) === null || _links$syntheticOrigi === void 0 ? void 0 : _links$syntheticOrigi[0];
|
|
113
|
+
if (documentationComment.length === 0) {
|
|
114
|
+
documentationComment = links.syntheticOrigin.getDocumentationComment(undefined);
|
|
115
|
+
}
|
|
116
|
+
checkLinksSymbol = links.syntheticOrigin;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
if (declaration === undefined) {
|
|
120
|
+
const links = symbol.links;
|
|
121
|
+
if (links !== null && links !== void 0 && links.syntheticOrigin) {
|
|
122
|
+
var _links$syntheticOrigi2;
|
|
123
|
+
declaration = (_links$syntheticOrigi2 = links.syntheticOrigin.getDeclarations()) === null || _links$syntheticOrigi2 === void 0 ? void 0 : _links$syntheticOrigi2[0];
|
|
124
|
+
if (documentationComment.length === 0) {
|
|
125
|
+
documentationComment = links.syntheticOrigin.getDocumentationComment(undefined);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
if (declaration !== undefined) {
|
|
130
|
+
const rawDocTags = ts.getJSDocTags(declaration);
|
|
131
|
+
const dict = getTagDict(rawDocTags);
|
|
132
|
+
if (dict.summary) {
|
|
133
|
+
parameter.Description = dict.summary;
|
|
134
|
+
} else {
|
|
135
|
+
const comment = documentationComment.map(comment => comment.text).join(" ");
|
|
136
|
+
if (comment) {
|
|
137
|
+
parameter.Description = comment;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
if (dict.creatorType) {
|
|
141
|
+
parameter.Type = dict.creatorType;
|
|
142
|
+
}
|
|
143
|
+
if (dict.default && dict.creatorType) {
|
|
144
|
+
parameter.Default = parseDefault(dict.default, dict.creatorType);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
return parameter;
|
|
148
|
+
});
|
|
149
|
+
}
|
|
150
|
+
function getTagDict(tags) {
|
|
151
|
+
const dict = {};
|
|
152
|
+
for (const tag of tags) {
|
|
153
|
+
dict[tag.tagName.text] = tag.comment;
|
|
154
|
+
}
|
|
155
|
+
return dict;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* Extracts and returns script array for _Index.json from a src folder
|
|
160
|
+
*
|
|
161
|
+
* @param folderPath path to a src folder
|
|
162
|
+
*/
|
|
163
|
+
function extract(location, ignore = []) {
|
|
164
|
+
const files = getPackageTypescriptFiles(location);
|
|
165
|
+
const filtered = files.filter(path => {
|
|
166
|
+
return !ignore.some(suffix => path.endsWith(suffix));
|
|
167
|
+
});
|
|
168
|
+
const arr = [];
|
|
169
|
+
const existingIndex = readPackageCreatorIndex(location) ?? [];
|
|
170
|
+
const program = ts.createProgram(filtered, {
|
|
171
|
+
allowJs: true
|
|
172
|
+
});
|
|
173
|
+
const typeChecker = program.getTypeChecker();
|
|
174
|
+
filtered.forEach(file => {
|
|
175
|
+
// Create a Program to represent the project, then pull out the
|
|
176
|
+
// source file to parse its AST.
|
|
177
|
+
const sourceFile = program.getSourceFile(file);
|
|
178
|
+
|
|
179
|
+
// Loop through the root AST nodes of the file
|
|
180
|
+
ts.forEachChild(sourceFile, node => {
|
|
181
|
+
for (const evalNode of findEvaluatorNodes(node)) {
|
|
182
|
+
const moduleName = getModuleName(node);
|
|
183
|
+
if (evalNode.name === undefined) {
|
|
184
|
+
throw new Error(`Expected evaluator class to have a name`);
|
|
185
|
+
}
|
|
186
|
+
const name = moduleName + "." + evalNode.name.getText();
|
|
187
|
+
if (name.length > 45) {
|
|
188
|
+
throw new Error(`Package name length >45 '${name}'`);
|
|
189
|
+
}
|
|
190
|
+
const parameterDeclaration = getParameterDeclaration(evalNode);
|
|
191
|
+
const parametersType = parameterDeclaration === undefined ? undefined : typeChecker.getTypeAtLocation(parameterDeclaration);
|
|
192
|
+
if (parametersType === undefined) {
|
|
193
|
+
console.log(`Failed to find parameters type declaration for evaluator ${evalNode.name.getText()}. Skipping parameter list generation`);
|
|
194
|
+
}
|
|
195
|
+
const existingIndexEntry = existingIndex.find(entry => entry.Name === name);
|
|
196
|
+
const obj = {
|
|
197
|
+
Name: name,
|
|
198
|
+
Description: existingIndexEntry === null || existingIndexEntry === void 0 ? void 0 : existingIndexEntry.Description,
|
|
199
|
+
Type: "Evaluator",
|
|
200
|
+
Parameters: []
|
|
201
|
+
};
|
|
202
|
+
const rawDocTags = ts.getJSDocTags(evalNode);
|
|
203
|
+
const dict = getTagDict(rawDocTags);
|
|
204
|
+
if (dict.summary) {
|
|
205
|
+
obj.Description = dict.summary;
|
|
206
|
+
} else {
|
|
207
|
+
const comment = typeChecker.getTypeAtLocation(evalNode).symbol.getDocumentationComment(typeChecker).map(comment => comment.text).join(" ");
|
|
208
|
+
if (comment) {
|
|
209
|
+
obj.Description = comment;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
if (dict.creatorType) {
|
|
213
|
+
obj.Type = dict.creatorType;
|
|
214
|
+
}
|
|
215
|
+
if (parametersType !== undefined) {
|
|
216
|
+
obj.Parameters = genParameters(typeChecker.getPropertiesOfType(parametersType));
|
|
217
|
+
if (obj.Parameters.length === 0 && parametersType.getStringIndexType() !== undefined) {
|
|
218
|
+
obj.Parameters = (existingIndexEntry === null || existingIndexEntry === void 0 ? void 0 : existingIndexEntry.Parameters) ?? [];
|
|
219
|
+
}
|
|
220
|
+
} else if (existingIndexEntry !== undefined) {
|
|
221
|
+
obj.Parameters = existingIndexEntry.Parameters;
|
|
222
|
+
}
|
|
223
|
+
arr.push(obj);
|
|
224
|
+
}
|
|
225
|
+
});
|
|
226
|
+
});
|
|
227
|
+
writePackageCreatorIndex(location, arr);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
export { extract };
|
|
231
|
+
//# sourceMappingURL=generate-97bb8b12.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generate-97bb8b12.js","sources":["../src/commands/generate.ts"],"sourcesContent":["import ts from \"typescript\";\n\nimport {\n\tPackageLocation,\n\twritePackageCreatorIndex,\n\treadPackageCreatorIndex,\n} from \"../lib/package\";\nimport { getPackageTypescriptFiles } from \"../lib/scripts\";\nimport {\n\tCreatorIndexEntry,\n\tCreatorIndexParameter,\n\tCreatorIndexParameterType,\n} from \"../lib/package\";\n\nfunction capitalizeFirstLetter(string: string) {\n\treturn string?.charAt(0).toUpperCase() + string?.slice(1);\n}\n\nfunction parseDefault(value: string, type: string) {\n\tconst uType: CreatorIndexParameterType = capitalizeFirstLetter(\n\t\ttype,\n\t) as CreatorIndexParameterType;\n\tif (value === \"null\") return null;\n\tswitch (uType) {\n\t\tcase \"LengthM\":\n\t\tcase \"ArcDEG\":\n\t\tcase \"Float\":\n\t\t\treturn parseFloat(value);\n\t\tcase \"Integer\":\n\t\tcase \"Int\":\n\t\t\treturn parseInt(value);\n\t\tcase \"Boolean\":\n\t\tcase \"Bool\":\n\t\t\treturn value === \"true\";\n\t\tcase \"Material\":\n\t\tcase \"String\":\n\t\tcase \"Geometry\":\n\t\tdefault:\n\t\t\treturn value.replace(/^\"/, \"\").replace(/\"$/, \"\");\n\t}\n}\n\nconst findEvaluatorNodes = (node: ts.Node) => {\n\tlet body: ts.NamespaceBody | ts.JSDocNamespaceBody | undefined;\n\n\tif (ts.isModuleDeclaration(node)) {\n\t\tbody = node.body;\n\t}\n\tif (body !== undefined && ts.isModuleDeclaration(body)) {\n\t\tbody = body.body;\n\t}\n\n\tconst evaluators: ts.ClassDeclaration[] = [];\n\n\tif (body !== undefined) {\n\t\tts.forEachChild(body, (child) => {\n\t\t\tif (!ts.isClassDeclaration(child)) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tconst isEvaluator = child.heritageClauses?.some((clause) => {\n\t\t\t\tif (\n\t\t\t\t\tclause.token !== ts.SyntaxKind.ExtendsKeyword &&\n\t\t\t\t\tclause.token !== ts.SyntaxKind.ImplementsKeyword\n\t\t\t\t) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\n\t\t\t\treturn clause.types.some((type) =>\n\t\t\t\t\ttype.getText().includes(\"Evaluator\"),\n\t\t\t\t);\n\t\t\t});\n\n\t\t\tif (isEvaluator) {\n\t\t\t\tevaluators.push(child);\n\t\t\t}\n\t\t});\n\t}\n\n\treturn evaluators;\n};\n\nfunction getParameterDeclaration(evaluatorNode: ts.ClassDeclaration) {\n\tlet memb = evaluatorNode.members?.find(\n\t\t(member) => member?.name?.getText() == \"Create\",\n\t);\n\tif (memb && ts.isMethodDeclaration(memb)) {\n\t\treturn memb.parameters[2];\n\t}\n}\n\nfunction getModuleName(sourceFile: ts.Node): string {\n\tlet fullName = \"\";\n\tif (ts.isModuleDeclaration(sourceFile)) {\n\t\tfullName += sourceFile.name.getText();\n\n\t\tlet packageB = sourceFile.body!;\n\t\tif (ts.isModuleDeclaration(packageB)) {\n\t\t\tfullName += \".\" + packageB.name.getText();\n\t\t}\n\t}\n\treturn fullName;\n}\n\nfunction genParameters(properties: ts.Symbol[]): CreatorIndexParameter[] {\n\treturn properties.map((symbol, i) => {\n\t\tconst parameter: CreatorIndexParameter = {\n\t\t\tName: symbol.name,\n\t\t\tDescription: undefined,\n\t\t\tType: \"String\",\n\t\t\tDefault: undefined,\n\t\t\tDisplayIndex: i + 1,\n\t\t};\n\n\t\tif (parameter.Name.length > 45) {\n\t\t\tthrow new Error(`Parameter name length >45 '${parameter.Name}'`);\n\t\t}\n\n\t\tlet declaration: ts.Declaration | undefined =\n\t\t\tsymbol.getDeclarations()?.[0];\n\t\tlet documentationComment = symbol.getDocumentationComment(undefined);\n\n\t\tlet checkLinksSymbol: ts.Symbol | undefined = symbol;\n\n\t\twhile (checkLinksSymbol !== undefined && declaration === undefined) {\n\t\t\tconst links = (\n\t\t\t\tcheckLinksSymbol as {\n\t\t\t\t\tlinks?: {\n\t\t\t\t\t\tmappedType?: ts.Type;\n\t\t\t\t\t\tsyntheticOrigin?: ts.Symbol;\n\t\t\t\t\t};\n\t\t\t\t} & ts.Symbol\n\t\t\t).links;\n\n\t\t\tif (links?.syntheticOrigin) {\n\t\t\t\tdeclaration = links.syntheticOrigin.getDeclarations()?.[0];\n\n\t\t\t\tif (documentationComment.length === 0) {\n\t\t\t\t\tdocumentationComment =\n\t\t\t\t\t\tlinks.syntheticOrigin.getDocumentationComment(\n\t\t\t\t\t\t\tundefined,\n\t\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\tcheckLinksSymbol = links.syntheticOrigin;\n\t\t\t}\n\t\t}\n\n\t\tif (declaration === undefined) {\n\t\t\tconst links = (\n\t\t\t\tsymbol as {\n\t\t\t\t\tlinks?: {\n\t\t\t\t\t\tmappedType?: ts.Type;\n\t\t\t\t\t\tsyntheticOrigin?: ts.Symbol;\n\t\t\t\t\t};\n\t\t\t\t} & ts.Symbol\n\t\t\t).links;\n\n\t\t\tif (links?.syntheticOrigin) {\n\t\t\t\tdeclaration = links.syntheticOrigin.getDeclarations()?.[0];\n\n\t\t\t\tif (documentationComment.length === 0) {\n\t\t\t\t\tdocumentationComment =\n\t\t\t\t\t\tlinks.syntheticOrigin.getDocumentationComment(\n\t\t\t\t\t\t\tundefined,\n\t\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif (declaration !== undefined) {\n\t\t\tconst rawDocTags = ts.getJSDocTags(declaration);\n\n\t\t\tconst dict = getTagDict(rawDocTags);\n\n\t\t\tif (dict.summary) {\n\t\t\t\tparameter.Description = dict.summary;\n\t\t\t} else {\n\t\t\t\tconst comment = documentationComment\n\t\t\t\t\t.map((comment) => comment.text)\n\t\t\t\t\t.join(\" \");\n\n\t\t\t\tif (comment) {\n\t\t\t\t\tparameter.Description = comment;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (dict.creatorType) {\n\t\t\t\tparameter.Type = dict.creatorType as CreatorIndexParameterType;\n\t\t\t}\n\t\t\tif (dict.default && dict.creatorType) {\n\t\t\t\tparameter.Default = parseDefault(\n\t\t\t\t\tdict.default,\n\t\t\t\t\tdict.creatorType,\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t\treturn parameter;\n\t});\n}\n\ninterface IDocTags {\n\tdefault?: string;\n\tcreatorType?: string;\n\tsummary?: string;\n}\n\nfunction getTagDict(tags: readonly ts.JSDocTag[]): IDocTags {\n\tconst dict: IDocTags = {};\n\n\tfor (const tag of tags) {\n\t\tdict[tag.tagName.text] = tag.comment;\n\t}\n\n\treturn dict;\n}\n\n/**\n * Extracts and returns script array for _Index.json from a src folder\n *\n * @param folderPath path to a src folder\n */\nexport function extract(location: PackageLocation, ignore: string[] = []) {\n\tconst files = getPackageTypescriptFiles(location);\n\tconst filtered = files.filter((path) => {\n\t\treturn !ignore.some((suffix) => path.endsWith(suffix));\n\t});\n\tconst arr: CreatorIndexEntry[] = [];\n\n\tconst existingIndex = readPackageCreatorIndex(location) ?? [];\n\n\tconst program = ts.createProgram(filtered, { allowJs: true });\n\tconst typeChecker = program.getTypeChecker();\n\tfiltered.forEach((file) => {\n\t\t// Create a Program to represent the project, then pull out the\n\t\t// source file to parse its AST.\n\t\tconst sourceFile = program.getSourceFile(file);\n\n\t\t// Loop through the root AST nodes of the file\n\t\tts.forEachChild(sourceFile!, (node) => {\n\t\t\tfor (const evalNode of findEvaluatorNodes(node)) {\n\t\t\t\tconst moduleName = getModuleName(node);\n\n\t\t\t\tif (evalNode.name === undefined) {\n\t\t\t\t\tthrow new Error(`Expected evaluator class to have a name`);\n\t\t\t\t}\n\n\t\t\t\tconst name = moduleName + \".\" + evalNode.name.getText();\n\n\t\t\t\tif (name.length > 45) {\n\t\t\t\t\tthrow new Error(`Package name length >45 '${name}'`);\n\t\t\t\t}\n\n\t\t\t\tconst parameterDeclaration = getParameterDeclaration(evalNode);\n\n\t\t\t\tconst parametersType =\n\t\t\t\t\tparameterDeclaration === undefined\n\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t: typeChecker.getTypeAtLocation(parameterDeclaration);\n\n\t\t\t\tif (parametersType === undefined) {\n\t\t\t\t\tconsole.log(\n\t\t\t\t\t\t`Failed to find parameters type declaration for evaluator ${evalNode.name.getText()}. Skipping parameter list generation`,\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\tconst existingIndexEntry = existingIndex.find(\n\t\t\t\t\t(entry) => entry.Name === name,\n\t\t\t\t);\n\n\t\t\t\tconst obj: CreatorIndexEntry = {\n\t\t\t\t\tName: name,\n\t\t\t\t\tDescription: existingIndexEntry?.Description,\n\t\t\t\t\tType: \"Evaluator\",\n\t\t\t\t\tParameters: [],\n\t\t\t\t};\n\n\t\t\t\tconst rawDocTags = ts.getJSDocTags(evalNode);\n\n\t\t\t\tconst dict = getTagDict(rawDocTags);\n\t\t\t\tif (dict.summary) {\n\t\t\t\t\tobj.Description = dict.summary;\n\t\t\t\t} else {\n\t\t\t\t\tconst comment = typeChecker\n\t\t\t\t\t\t.getTypeAtLocation(evalNode)\n\t\t\t\t\t\t.symbol.getDocumentationComment(typeChecker)\n\t\t\t\t\t\t.map((comment) => comment.text)\n\t\t\t\t\t\t.join(\" \");\n\n\t\t\t\t\tif (comment) {\n\t\t\t\t\t\tobj.Description = comment;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (dict.creatorType) {\n\t\t\t\t\tobj.Type = dict.creatorType as \"Interactor\" | \"Evaluator\";\n\t\t\t\t}\n\n\t\t\t\tif (parametersType !== undefined) {\n\t\t\t\t\tobj.Parameters = genParameters(\n\t\t\t\t\t\ttypeChecker.getPropertiesOfType(parametersType),\n\t\t\t\t\t);\n\n\t\t\t\t\tif (\n\t\t\t\t\t\tobj.Parameters.length === 0 &&\n\t\t\t\t\t\tparametersType.getStringIndexType() !== undefined\n\t\t\t\t\t) {\n\t\t\t\t\t\tobj.Parameters = existingIndexEntry?.Parameters ?? [];\n\t\t\t\t\t}\n\t\t\t\t} else if (existingIndexEntry !== undefined) {\n\t\t\t\t\tobj.Parameters = existingIndexEntry.Parameters;\n\t\t\t\t}\n\n\t\t\t\tarr.push(obj);\n\t\t\t}\n\t\t});\n\t});\n\n\twritePackageCreatorIndex(location, arr);\n}\n"],"names":["capitalizeFirstLetter","string","charAt","toUpperCase","slice","parseDefault","value","type","uType","parseFloat","parseInt","replace","findEvaluatorNodes","node","body","ts","isModuleDeclaration","undefined","evaluators","forEachChild","child","_child$heritageClause","isClassDeclaration","isEvaluator","heritageClauses","some","clause","token","SyntaxKind","ExtendsKeyword","ImplementsKeyword","types","getText","includes","push","getParameterDeclaration","evaluatorNode","_evaluatorNode$member","memb","members","find","member","_member$name","name","isMethodDeclaration","parameters","getModuleName","sourceFile","fullName","packageB","genParameters","properties","map","symbol","i","_symbol$getDeclaratio","parameter","Name","Description","Type","Default","DisplayIndex","length","Error","declaration","getDeclarations","documentationComment","getDocumentationComment","checkLinksSymbol","links","syntheticOrigin","_links$syntheticOrigi","_links$syntheticOrigi2","rawDocTags","getJSDocTags","dict","getTagDict","summary","comment","text","join","creatorType","default","tags","tag","tagName","extract","location","ignore","files","getPackageTypescriptFiles","filtered","filter","path","suffix","endsWith","arr","existingIndex","readPackageCreatorIndex","program","createProgram","allowJs","typeChecker","getTypeChecker","forEach","file","getSourceFile","evalNode","moduleName","parameterDeclaration","parametersType","getTypeAtLocation","console","log","existingIndexEntry","entry","obj","Parameters","getPropertiesOfType","getStringIndexType","writePackageCreatorIndex"],"mappings":"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"}
|
|
@@ -3,7 +3,7 @@ import * as fs from 'fs';
|
|
|
3
3
|
import * as terser from 'terser';
|
|
4
4
|
import 'resolve';
|
|
5
5
|
import 'write-pkg';
|
|
6
|
-
import { h as getPackageTypescriptFiles, r as readPackageCreatorManifest, n as readPackageNpmManifest } from './cli-
|
|
6
|
+
import { h as getPackageTypescriptFiles, r as readPackageCreatorManifest, n as readPackageNpmManifest } from './cli-2c3347fd.js';
|
|
7
7
|
import 'node:path';
|
|
8
8
|
import 'node:fs';
|
|
9
9
|
import 'axios';
|
|
@@ -305,4 +305,4 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
305
305
|
});
|
|
306
306
|
|
|
307
307
|
export { buildFolders as b, index as i, logPackageMessage as l };
|
|
308
|
-
//# sourceMappingURL=index-
|
|
308
|
+
//# sourceMappingURL=index-01b0ddab.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-92b6ba5c.js","sources":["../../tools.core/build/log.mjs","../src/commands/build/tsc.ts","../src/commands/build/docs.ts","../src/lib/toposort.ts","../src/commands/build/index.ts"],"sourcesContent":["const logPackageMessage = (name, step, index, total) => {\n const numLength = total === undefined ? undefined : total.toString().length;\n const indexString = total === undefined || total < 2 ? \"\" : `${index.toString().padStart(numLength, \"0\")}/${total} `;\n const identifierString = `${indexString}${name.padEnd(15)}`;\n console.log(`${identifierString} >> ${step}`);\n};\n\nexport { logPackageMessage };\n//# sourceMappingURL=log.mjs.map\n","import ts from \"typescript\";\nimport * as path from \"path\";\nimport * as fs from \"fs\";\n\nimport { PackageLocation } from \"../../lib/package\";\n\nimport { FolderBuilder } from \".\";\nimport { getPackageTypescriptFiles } from \"../../lib/scripts\";\n\nexport const tryReadTsConfig = (location: PackageLocation) => {\n\tconst { config } = ts.readConfigFile(\n\t\tpath.join(location.scriptsDir, \"tsconfig.json\"),\n\t\t(path) => {\n\t\t\ttry {\n\t\t\t\treturn fs.readFileSync(path, \"utf8\");\n\t\t\t} catch {\n\t\t\t\treturn undefined;\n\t\t\t}\n\t\t},\n\t);\n\n\treturn config as {\n\t\tcompilerOptions: ts.CompilerOptions;\n\t};\n};\n\nexport const build: FolderBuilder = async (\n\tlocation: PackageLocation,\n\toutputDir: string,\n) => {\n\tconst config = tryReadTsConfig(location);\n\n\tconfig.compilerOptions.lib = [\"es5\", \"dom\"];\n\n\tconst result = ts.convertCompilerOptionsFromJson(\n\t\tconfig.compilerOptions,\n\t\tlocation.scriptsDir,\n\t);\n\n\tconst compilerOptions: ts.CompilerOptions = {\n\t\t...result.options,\n\t\tremoveComments: false,\n\t\tdeclaration: true,\n\t\tsourceMap: false,\n\t\t// We don't use tsc to actually emit the files, but we still need to set the correct\n\t\t// output directory so the compiler can rewrite the `reference path` directives.\n\t\toutFile: path.join(outputDir, \"out.js\"),\n\t\ttarget: ts.ScriptTarget.ES5,\n\t\tnoEmitOnError: true,\n\t};\n\n\tconst host = ts.createCompilerHost(compilerOptions);\n\thost.getCurrentDirectory = () => location.scriptsDir;\n\n\tlet js: string | undefined;\n\tlet definitions: string | undefined;\n\n\thost.writeFile = (fileName, data, writeByteOrderMark) => {\n\t\tif (fileName.endsWith(\".js\")) {\n\t\t\tjs = data;\n\t\t} else if (fileName.endsWith(\".d.ts\")) {\n\t\t\tdefinitions = data;\n\t\t}\n\t};\n\n\tconst files = getPackageTypescriptFiles(location);\n\n\tif (files.length === 0) {\n\t\tthrow new Error(\n\t\t\t`Expected typescript files to exist when building a package. Packages only consisting of animation jsons do not need to be built.`,\n\t\t);\n\t}\n\n\tconst programOptions: ts.CreateProgramOptions = {\n\t\trootNames: files,\n\t\toptions: compilerOptions,\n\t\thost,\n\t};\n\n\tconst program = ts.createProgram(programOptions);\n\tconst emitResult = program.emit();\n\tconst allDiagnostics = ts.getPreEmitDiagnostics(program);\n\n\tif (!emitResult.emitSkipped) {\n\t\tif (allDiagnostics.length > 0) {\n\t\t\tconsole.log(allDiagnostics.map(createErrorMessage).join(\"\\n\"));\n\t\t}\n\n\t\tif (js === undefined || definitions === undefined) {\n\t\t\tthrow new Error(`Unexpected: no js or definitions were created`);\n\t\t}\n\n\t\treturn { js, definitions };\n\t}\n\n\tconst error = allDiagnostics.map(createErrorMessage).join(\"\\n\");\n\n\tthrow new Error(error);\n};\n\nconst createErrorMessage = (diagnostic: ts.Diagnostic) => {\n\tif (!diagnostic.file) {\n\t\treturn `${ts.flattenDiagnosticMessageText(\n\t\t\tdiagnostic.messageText,\n\t\t\t\"\\n\",\n\t\t)}`;\n\t}\n\n\tconst { line, character } = diagnostic.file.getLineAndCharacterOfPosition(\n\t\tdiagnostic.start!,\n\t);\n\n\tconst message = ts.flattenDiagnosticMessageText(\n\t\tdiagnostic.messageText,\n\t\t\"\\n\",\n\t);\n\n\treturn `${diagnostic.file.fileName} (${line + 1},${\n\t\tcharacter + 1\n\t}): ${message}`;\n};\n","import typedoc from \"typedoc\";\nimport glob from \"glob\";\nimport ts from \"typescript\";\nimport * as path from \"path\";\nimport { PackageLocation } from \"../../lib/package\";\n\nexport const generateDocs = async (\n\tlocation: PackageLocation,\n\tdeclarationFile: string,\n\toutFolder: string,\n\tname: string,\n) => {\n\tconst app = new typedoc.Application();\n\n\tconst mediaDir = path.join(location.manifestDir, \"Media\");\n\n\tapp.bootstrap({\n\t\tentryPoints: [declarationFile],\n\t\tmedia: mediaDir,\n\t\tout: outFolder,\n\t\ttsconfig: path.join(location.scriptsDir, \"tsconfig.json\"),\n\t\tskipErrorChecking: true,\n\t});\n\n\tapp.options.setCompilerOptions(\n\t\t[declarationFile],\n\t\t{\n\t\t\ttarget: ts.ScriptTarget.ES5,\n\t\t},\n\t\tundefined,\n\t);\n\n\tapp.options.setValue(\"name\", name);\n\n\tconst [readmePath] = glob.sync(\"**/readme.md\", {\n\t\tabsolute: true,\n\t\tcwd: location.manifestDir,\n\t});\n\n\tif (readmePath) {\n\t\tapp.options.setValue(\"readme\", readmePath);\n\t}\n\n\tconst project = app.convert();\n\n\tif (project) {\n\t\tawait app.generateDocs(project, outFolder);\n\t}\n};\n","// Stolen from ig.tools.core\n\nexport const toposort = (packages: Record<string, string[]>) => {\n\tconst queue = Object.getOwnPropertyNames(packages);\n\tconst result: string[] = [];\n\n\tlet index = 0;\n\n\twhile (queue.length > 0) {\n\t\tif (index >= queue.length) {\n\t\t\tthrow new Error(\"Packages can not have cyclic dependencies\");\n\t\t}\n\n\t\tconst queueEntry = queue[index];\n\n\t\tconst dependencies = packages[queueEntry];\n\t\tconst dependencyQueued = dependencies.some((dependency) =>\n\t\t\tqueue.includes(dependency),\n\t\t);\n\n\t\tif (dependencyQueued) {\n\t\t\tindex++;\n\t\t\tcontinue;\n\t\t}\n\n\t\tqueue.splice(index, 1);\n\t\tindex = 0;\n\t\tresult.push(queueEntry);\n\t}\n\n\treturn result;\n};\n","import * as path from \"path\";\nimport * as fs from \"fs\";\nimport * as terser from \"terser\";\n\nimport { logPackageMessage } from \"../../lib/log\";\nimport { build as tscBuild } from \"./tsc\";\nimport { generateDocs } from \"./docs\";\nimport {\n\tPackageLocation,\n\treadPackageCreatorManifest,\n\treadPackageNpmManifest,\n} from \"../../lib/package\";\nimport { WorkspaceLocation } from \"../../lib/workspace\";\nimport { getPackageTypescriptFiles } from \"../../lib/scripts\";\nimport { toposort } from \"../../lib/toposort\";\nimport { PackageJSON } from \"../../lib/packageJSON\";\n\nexport interface BannerOptions {\n\ttext: string | undefined;\n\tversion: string | undefined;\n\tcommit: string | undefined;\n\tcommitDirty: boolean | undefined;\n\tdate: Date | undefined;\n}\n\nexport interface BuildFoldersOptions {\n\tworkspace: WorkspaceLocation;\n\tpackages: PackageLocation[];\n\toutDir?: string;\n\tminimize: boolean;\n\tbanner?: BannerOptions;\n\tclean?: boolean;\n\tdocs?: boolean;\n\tskipPackagesWithoutTsFiles?: boolean;\n}\n\nexport interface BuildFolderOptions extends BuildFoldersOptions {\n\toutFile: string;\n}\n\nexport interface FolderBuilderResult {\n\tjs: string;\n\tdefinitions: string;\n}\n\nexport type FolderBuilder = (\n\tlocation: PackageLocation,\n\toutputDir: string,\n) => Promise<FolderBuilderResult>;\n\ntype FolderData = {\n\tlocation: PackageLocation;\n\tdata?: PackageJSON;\n};\n\nexport const buildFolders = async (options: BuildFoldersOptions) => {\n\tif (options.outDir !== undefined && options.clean) {\n\t\tfs.rmSync(options.outDir, { recursive: true });\n\t}\n\n\tconst workspace = options.workspace;\n\tconst folders = options.packages;\n\n\tconst sortedPackages = sortPackagesByBuildOrder(folders);\n\n\tlet index = 1;\n\n\tfor (const location of sortedPackages) {\n\t\tif (\n\t\t\toptions.skipPackagesWithoutTsFiles &&\n\t\t\tgetPackageTypescriptFiles(location).length === 0\n\t\t) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tensureTsConfig(location);\n\n\t\tconst data = readPackageCreatorManifest(location);\n\n\t\tconst logStep = (step: string) =>\n\t\t\tlogPackageMessage(data.Package, step, index, folders.length);\n\n\t\tlogStep(\"Compiling typescript to javascript\");\n\n\t\tconst outputDirectory = options.outDir || location.scriptsDir;\n\t\tfs.mkdirSync(outputDirectory, { recursive: true });\n\n\t\tconst buildResult = await tscBuild(location, outputDirectory);\n\t\tconst banner = options.banner\n\t\t\t? createBannerComment(options.banner)\n\t\t\t: undefined;\n\n\t\tif (banner) {\n\t\t\tbuildResult.js = banner + \"\\n\" + buildResult.js;\n\t\t\tbuildResult.definitions = banner + \"\\n\" + buildResult.definitions;\n\t\t}\n\n\t\tfs.writeFileSync(\n\t\t\tpath.join(outputDirectory, `${data.Package}.js`),\n\t\t\tbuildResult.js,\n\t\t\t{ encoding: \"utf8\" },\n\t\t);\n\t\tfs.writeFileSync(\n\t\t\tpath.join(outputDirectory, `${data.Package}.d.ts`),\n\t\t\tbuildResult.definitions,\n\t\t\t{ encoding: \"utf8\" },\n\t\t);\n\n\t\tif (options.minimize) {\n\t\t\tconst minifyResult = await terser.minify(buildResult.js, {\n\t\t\t\tecma: 5,\n\t\t\t});\n\n\t\t\tconst minifiedPath = path.join(\n\t\t\t\toutputDirectory,\n\t\t\t\t`${data.Package}.min.js`,\n\t\t\t);\n\t\t\tfs.writeFileSync(minifiedPath, minifyResult.code!, {\n\t\t\t\tencoding: \"utf8\",\n\t\t\t});\n\t\t}\n\n\t\tif (location.path.includes(\"Basics\")) {\n\t\t\tfs.mkdirSync(path.join(workspace.path, \"lib\"), {\n\t\t\t\trecursive: true,\n\t\t\t});\n\n\t\t\tlogStep(\"Copying basics definition file to the lib folder\");\n\t\t\tfs.writeFileSync(\n\t\t\t\tpath.join(workspace.path, \"lib\", `${data.Package}.d.ts`),\n\t\t\t\tbuildResult.definitions,\n\t\t\t\t{ encoding: \"utf8\" },\n\t\t\t);\n\t\t}\n\n\t\tif (options.docs) {\n\t\t\tlogStep(\"Generating typedoc documentation\");\n\t\t\tawait generateDocs(\n\t\t\t\tlocation,\n\t\t\t\tpath.join(outputDirectory, `${data.Package}.d.ts`),\n\t\t\t\tpath.join(workspace.path, \"docs\", data.Package),\n\t\t\t\tdata.Package,\n\t\t\t);\n\t\t}\n\n\t\tindex++;\n\t}\n};\n\nconst ensureTsConfig = (location: PackageLocation) => {\n\tconst tsconfigPath = path.join(location.scriptsDir, \"tsconfig.json\");\n\n\tif (!fs.existsSync(tsconfigPath)) {\n\t\tconst content = {};\n\t\tapplyTsConfigOption(content);\n\n\t\tfs.writeFileSync(\n\t\t\ttsconfigPath,\n\t\t\tJSON.stringify(content, undefined, \"\\t\"),\n\t\t\t\"utf8\",\n\t\t);\n\t} else {\n\t\tconst content = JSON.parse(fs.readFileSync(tsconfigPath, \"utf8\"));\n\t\tapplyTsConfigOption(content);\n\t\tfs.writeFileSync(\n\t\t\ttsconfigPath,\n\t\t\tJSON.stringify(content, undefined, \"\\t\"),\n\t\t\t\"utf8\",\n\t\t);\n\t}\n};\n\nconst applyTsConfigOption = (data: {\n\tcompilerOptions?: { target?: string; lib?: string[] };\n}) => {\n\tdata.compilerOptions = data.compilerOptions ?? {};\n\tdata.compilerOptions.target = \"es5\";\n\tdata.compilerOptions.lib = [\"es5\", \"dom\"];\n};\n\nconst sortPackagesByBuildOrder = (\n\tfolders: PackageLocation[],\n): PackageLocation[] => {\n\tconst packages = Array.from(folders).reduce(\n\t\t(\n\t\t\tacc: Record<string, FolderData>,\n\t\t\tlocation,\n\t\t): Record<string, FolderData> => {\n\t\t\tconst data = readPackageNpmManifest(location);\n\n\t\t\tif (data !== undefined) {\n\t\t\t\tacc[data.name] = {\n\t\t\t\t\tdata,\n\t\t\t\t\tlocation,\n\t\t\t\t};\n\t\t\t} else {\n\t\t\t\tacc[location.path] = {\n\t\t\t\t\tdata: undefined,\n\t\t\t\t\tlocation,\n\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn acc;\n\t\t},\n\t\t{},\n\t);\n\n\tconst packageDependencies = Object.getOwnPropertyNames(packages).reduce(\n\t\t(acc, packageName) => {\n\t\t\tconst packageData = packages[packageName];\n\n\t\t\tif (packageData.data === undefined) {\n\t\t\t\tacc[packageName] = [];\n\t\t\t} else {\n\t\t\t\tacc[packageName] = Object.getOwnPropertyNames({\n\t\t\t\t\t...packageData.data.devDependencies,\n\t\t\t\t\t...packageData.data.dependencies,\n\t\t\t\t\t...packageData.data.peerDependencies,\n\t\t\t\t}).filter((packageName) => packages[packageName] !== undefined);\n\t\t\t}\n\n\t\t\treturn acc;\n\t\t},\n\t\t{},\n\t);\n\n\tconst sortedPackages = toposort(packageDependencies);\n\tconst result: PackageLocation[] = [];\n\n\tfor (const packageName of sortedPackages) {\n\t\tconst location = packages[packageName].location;\n\n\t\tif (readPackageCreatorManifest(location).Package.endsWith(\".Basics\")) {\n\t\t\tresult.unshift(location);\n\t\t} else {\n\t\t\tresult.push(location);\n\t\t}\n\t}\n\n\treturn result;\n};\n\nconst createBannerComment = (banner: BannerOptions) => {\n\tconst bannerParts: string[] = [];\n\n\tif (banner.text) {\n\t\tbannerParts.push(\" * \" + banner.text);\n\t}\n\n\t{\n\t\tconst details: string[] = [];\n\n\t\tif (banner.version) {\n\t\t\tdetails.push(`Version: ${banner.version}`);\n\t\t}\n\t\tif (banner.commit) {\n\t\t\tif (banner.commitDirty) {\n\t\t\t\tdetails.push(`Commit: ${banner.commit} (dirty)`);\n\t\t\t} else {\n\t\t\t\tdetails.push(`Commit: ${banner.commit}`);\n\t\t\t}\n\t\t}\n\t\tif (banner.date) {\n\t\t\tdetails.push(`Date: ${banner.date.toISOString()}`);\n\t\t}\n\n\t\tconst detailsText = details.map((line) => ` * ${line}`).join(\"\\n\");\n\t\tif (detailsText) {\n\t\t\tbannerParts.push(detailsText);\n\t\t}\n\t}\n\n\tconst bannerText = bannerParts.join(\"\\n\\n\");\n\n\tif (bannerText) {\n\t\treturn `/*\n${bannerText}\n*\n* @preserve\t\t\t\n*/`;\n\t}\n\n\treturn undefined;\n};\n"],"names":["logPackageMessage","name","step","index","total","numLength","undefined","toString","length","indexString","padStart","identifierString","padEnd","console","log","tryReadTsConfig","location","config","ts","readConfigFile","path","join","scriptsDir","fs","readFileSync","build","outputDir","compilerOptions","lib","result","convertCompilerOptionsFromJson","options","removeComments","declaration","sourceMap","outFile","target","ScriptTarget","ES5","noEmitOnError","host","createCompilerHost","getCurrentDirectory","js","definitions","writeFile","fileName","data","writeByteOrderMark","endsWith","files","getPackageTypescriptFiles","Error","programOptions","rootNames","program","createProgram","emitResult","emit","allDiagnostics","getPreEmitDiagnostics","emitSkipped","map","createErrorMessage","error","diagnostic","file","flattenDiagnosticMessageText","messageText","line","character","getLineAndCharacterOfPosition","start","message","generateDocs","declarationFile","outFolder","app","typedoc","Application","mediaDir","manifestDir","bootstrap","entryPoints","media","out","tsconfig","skipErrorChecking","setCompilerOptions","setValue","readmePath","glob","sync","absolute","cwd","project","convert","toposort","packages","queue","Object","getOwnPropertyNames","queueEntry","dependencies","dependencyQueued","some","dependency","includes","splice","push","buildFolders","outDir","clean","rmSync","recursive","workspace","folders","sortedPackages","sortPackagesByBuildOrder","skipPackagesWithoutTsFiles","ensureTsConfig","readPackageCreatorManifest","logStep","Package","outputDirectory","mkdirSync","buildResult","tscBuild","banner","createBannerComment","writeFileSync","encoding","minimize","minifyResult","terser","minify","ecma","minifiedPath","code","docs","tsconfigPath","existsSync","content","applyTsConfigOption","JSON","stringify","parse","Array","from","reduce","acc","readPackageNpmManifest","packageDependencies","packageName","packageData","devDependencies","peerDependencies","filter","unshift","bannerParts","text","details","version","commit","commitDirty","date","toISOString","detailsText","bannerText"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index-01b0ddab.js","sources":["../../tools.core/build/log.mjs","../src/commands/build/tsc.ts","../src/commands/build/docs.ts","../src/lib/toposort.ts","../src/commands/build/index.ts"],"sourcesContent":["const logPackageMessage = (name, step, index, total) => {\n const numLength = total === undefined ? undefined : total.toString().length;\n const indexString = total === undefined || total < 2 ? \"\" : `${index.toString().padStart(numLength, \"0\")}/${total} `;\n const identifierString = `${indexString}${name.padEnd(15)}`;\n console.log(`${identifierString} >> ${step}`);\n};\n\nexport { logPackageMessage };\n//# sourceMappingURL=log.mjs.map\n","import ts from \"typescript\";\nimport * as path from \"path\";\nimport * as fs from \"fs\";\n\nimport { PackageLocation } from \"../../lib/package\";\n\nimport { FolderBuilder } from \".\";\nimport { getPackageTypescriptFiles } from \"../../lib/scripts\";\n\nexport const tryReadTsConfig = (location: PackageLocation) => {\n\tconst { config } = ts.readConfigFile(\n\t\tpath.join(location.scriptsDir, \"tsconfig.json\"),\n\t\t(path) => {\n\t\t\ttry {\n\t\t\t\treturn fs.readFileSync(path, \"utf8\");\n\t\t\t} catch {\n\t\t\t\treturn undefined;\n\t\t\t}\n\t\t},\n\t);\n\n\treturn config as {\n\t\tcompilerOptions: ts.CompilerOptions;\n\t};\n};\n\nexport const build: FolderBuilder = async (\n\tlocation: PackageLocation,\n\toutputDir: string,\n) => {\n\tconst config = tryReadTsConfig(location);\n\n\tconfig.compilerOptions.lib = [\"es5\", \"dom\"];\n\n\tconst result = ts.convertCompilerOptionsFromJson(\n\t\tconfig.compilerOptions,\n\t\tlocation.scriptsDir,\n\t);\n\n\tconst compilerOptions: ts.CompilerOptions = {\n\t\t...result.options,\n\t\tremoveComments: false,\n\t\tdeclaration: true,\n\t\tsourceMap: false,\n\t\t// We don't use tsc to actually emit the files, but we still need to set the correct\n\t\t// output directory so the compiler can rewrite the `reference path` directives.\n\t\toutFile: path.join(outputDir, \"out.js\"),\n\t\ttarget: ts.ScriptTarget.ES5,\n\t\tnoEmitOnError: true,\n\t};\n\n\tconst host = ts.createCompilerHost(compilerOptions);\n\thost.getCurrentDirectory = () => location.scriptsDir;\n\n\tlet js: string | undefined;\n\tlet definitions: string | undefined;\n\n\thost.writeFile = (fileName, data, writeByteOrderMark) => {\n\t\tif (fileName.endsWith(\".js\")) {\n\t\t\tjs = data;\n\t\t} else if (fileName.endsWith(\".d.ts\")) {\n\t\t\tdefinitions = data;\n\t\t}\n\t};\n\n\tconst files = getPackageTypescriptFiles(location);\n\n\tif (files.length === 0) {\n\t\tthrow new Error(\n\t\t\t`Expected typescript files to exist when building a package. Packages only consisting of animation jsons do not need to be built.`,\n\t\t);\n\t}\n\n\tconst programOptions: ts.CreateProgramOptions = {\n\t\trootNames: files,\n\t\toptions: compilerOptions,\n\t\thost,\n\t};\n\n\tconst program = ts.createProgram(programOptions);\n\tconst emitResult = program.emit();\n\tconst allDiagnostics = ts.getPreEmitDiagnostics(program);\n\n\tif (!emitResult.emitSkipped) {\n\t\tif (allDiagnostics.length > 0) {\n\t\t\tconsole.log(allDiagnostics.map(createErrorMessage).join(\"\\n\"));\n\t\t}\n\n\t\tif (js === undefined || definitions === undefined) {\n\t\t\tthrow new Error(`Unexpected: no js or definitions were created`);\n\t\t}\n\n\t\treturn { js, definitions };\n\t}\n\n\tconst error = allDiagnostics.map(createErrorMessage).join(\"\\n\");\n\n\tthrow new Error(error);\n};\n\nconst createErrorMessage = (diagnostic: ts.Diagnostic) => {\n\tif (!diagnostic.file) {\n\t\treturn `${ts.flattenDiagnosticMessageText(\n\t\t\tdiagnostic.messageText,\n\t\t\t\"\\n\",\n\t\t)}`;\n\t}\n\n\tconst { line, character } = diagnostic.file.getLineAndCharacterOfPosition(\n\t\tdiagnostic.start!,\n\t);\n\n\tconst message = ts.flattenDiagnosticMessageText(\n\t\tdiagnostic.messageText,\n\t\t\"\\n\",\n\t);\n\n\treturn `${diagnostic.file.fileName} (${line + 1},${\n\t\tcharacter + 1\n\t}): ${message}`;\n};\n","import typedoc from \"typedoc\";\nimport glob from \"glob\";\nimport ts from \"typescript\";\nimport * as path from \"path\";\nimport { PackageLocation } from \"../../lib/package\";\n\nexport const generateDocs = async (\n\tlocation: PackageLocation,\n\tdeclarationFile: string,\n\toutFolder: string,\n\tname: string,\n) => {\n\tconst app = new typedoc.Application();\n\n\tconst mediaDir = path.join(location.manifestDir, \"Media\");\n\n\tapp.bootstrap({\n\t\tentryPoints: [declarationFile],\n\t\tmedia: mediaDir,\n\t\tout: outFolder,\n\t\ttsconfig: path.join(location.scriptsDir, \"tsconfig.json\"),\n\t\tskipErrorChecking: true,\n\t});\n\n\tapp.options.setCompilerOptions(\n\t\t[declarationFile],\n\t\t{\n\t\t\ttarget: ts.ScriptTarget.ES5,\n\t\t},\n\t\tundefined,\n\t);\n\n\tapp.options.setValue(\"name\", name);\n\n\tconst [readmePath] = glob.sync(\"**/readme.md\", {\n\t\tabsolute: true,\n\t\tcwd: location.manifestDir,\n\t});\n\n\tif (readmePath) {\n\t\tapp.options.setValue(\"readme\", readmePath);\n\t}\n\n\tconst project = app.convert();\n\n\tif (project) {\n\t\tawait app.generateDocs(project, outFolder);\n\t}\n};\n","// Stolen from ig.tools.core\n\nexport const toposort = (packages: Record<string, string[]>) => {\n\tconst queue = Object.getOwnPropertyNames(packages);\n\tconst result: string[] = [];\n\n\tlet index = 0;\n\n\twhile (queue.length > 0) {\n\t\tif (index >= queue.length) {\n\t\t\tthrow new Error(\"Packages can not have cyclic dependencies\");\n\t\t}\n\n\t\tconst queueEntry = queue[index];\n\n\t\tconst dependencies = packages[queueEntry];\n\t\tconst dependencyQueued = dependencies.some((dependency) =>\n\t\t\tqueue.includes(dependency),\n\t\t);\n\n\t\tif (dependencyQueued) {\n\t\t\tindex++;\n\t\t\tcontinue;\n\t\t}\n\n\t\tqueue.splice(index, 1);\n\t\tindex = 0;\n\t\tresult.push(queueEntry);\n\t}\n\n\treturn result;\n};\n","import * as path from \"path\";\nimport * as fs from \"fs\";\nimport * as terser from \"terser\";\n\nimport { logPackageMessage } from \"../../lib/log\";\nimport { build as tscBuild } from \"./tsc\";\nimport { generateDocs } from \"./docs\";\nimport {\n\tPackageLocation,\n\treadPackageCreatorManifest,\n\treadPackageNpmManifest,\n} from \"../../lib/package\";\nimport { WorkspaceLocation } from \"../../lib/workspace\";\nimport { getPackageTypescriptFiles } from \"../../lib/scripts\";\nimport { toposort } from \"../../lib/toposort\";\nimport { PackageJSON } from \"../../lib/packageJSON\";\n\nexport interface BannerOptions {\n\ttext: string | undefined;\n\tversion: string | undefined;\n\tcommit: string | undefined;\n\tcommitDirty: boolean | undefined;\n\tdate: Date | undefined;\n}\n\nexport interface BuildFoldersOptions {\n\tworkspace: WorkspaceLocation;\n\tpackages: PackageLocation[];\n\toutDir?: string;\n\tminimize: boolean;\n\tbanner?: BannerOptions;\n\tclean?: boolean;\n\tdocs?: boolean;\n\tskipPackagesWithoutTsFiles?: boolean;\n}\n\nexport interface BuildFolderOptions extends BuildFoldersOptions {\n\toutFile: string;\n}\n\nexport interface FolderBuilderResult {\n\tjs: string;\n\tdefinitions: string;\n}\n\nexport type FolderBuilder = (\n\tlocation: PackageLocation,\n\toutputDir: string,\n) => Promise<FolderBuilderResult>;\n\ntype FolderData = {\n\tlocation: PackageLocation;\n\tdata?: PackageJSON;\n};\n\nexport const buildFolders = async (options: BuildFoldersOptions) => {\n\tif (options.outDir !== undefined && options.clean) {\n\t\tfs.rmSync(options.outDir, { recursive: true });\n\t}\n\n\tconst workspace = options.workspace;\n\tconst folders = options.packages;\n\n\tconst sortedPackages = sortPackagesByBuildOrder(folders);\n\n\tlet index = 1;\n\n\tfor (const location of sortedPackages) {\n\t\tif (\n\t\t\toptions.skipPackagesWithoutTsFiles &&\n\t\t\tgetPackageTypescriptFiles(location).length === 0\n\t\t) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tensureTsConfig(location);\n\n\t\tconst data = readPackageCreatorManifest(location);\n\n\t\tconst logStep = (step: string) =>\n\t\t\tlogPackageMessage(data.Package, step, index, folders.length);\n\n\t\tlogStep(\"Compiling typescript to javascript\");\n\n\t\tconst outputDirectory = options.outDir || location.scriptsDir;\n\t\tfs.mkdirSync(outputDirectory, { recursive: true });\n\n\t\tconst buildResult = await tscBuild(location, outputDirectory);\n\t\tconst banner = options.banner\n\t\t\t? createBannerComment(options.banner)\n\t\t\t: undefined;\n\n\t\tif (banner) {\n\t\t\tbuildResult.js = banner + \"\\n\" + buildResult.js;\n\t\t\tbuildResult.definitions = banner + \"\\n\" + buildResult.definitions;\n\t\t}\n\n\t\tfs.writeFileSync(\n\t\t\tpath.join(outputDirectory, `${data.Package}.js`),\n\t\t\tbuildResult.js,\n\t\t\t{ encoding: \"utf8\" },\n\t\t);\n\t\tfs.writeFileSync(\n\t\t\tpath.join(outputDirectory, `${data.Package}.d.ts`),\n\t\t\tbuildResult.definitions,\n\t\t\t{ encoding: \"utf8\" },\n\t\t);\n\n\t\tif (options.minimize) {\n\t\t\tconst minifyResult = await terser.minify(buildResult.js, {\n\t\t\t\tecma: 5,\n\t\t\t});\n\n\t\t\tconst minifiedPath = path.join(\n\t\t\t\toutputDirectory,\n\t\t\t\t`${data.Package}.min.js`,\n\t\t\t);\n\t\t\tfs.writeFileSync(minifiedPath, minifyResult.code!, {\n\t\t\t\tencoding: \"utf8\",\n\t\t\t});\n\t\t}\n\n\t\tif (location.path.includes(\"Basics\")) {\n\t\t\tfs.mkdirSync(path.join(workspace.path, \"lib\"), {\n\t\t\t\trecursive: true,\n\t\t\t});\n\n\t\t\tlogStep(\"Copying basics definition file to the lib folder\");\n\t\t\tfs.writeFileSync(\n\t\t\t\tpath.join(workspace.path, \"lib\", `${data.Package}.d.ts`),\n\t\t\t\tbuildResult.definitions,\n\t\t\t\t{ encoding: \"utf8\" },\n\t\t\t);\n\t\t}\n\n\t\tif (options.docs) {\n\t\t\tlogStep(\"Generating typedoc documentation\");\n\t\t\tawait generateDocs(\n\t\t\t\tlocation,\n\t\t\t\tpath.join(outputDirectory, `${data.Package}.d.ts`),\n\t\t\t\tpath.join(workspace.path, \"docs\", data.Package),\n\t\t\t\tdata.Package,\n\t\t\t);\n\t\t}\n\n\t\tindex++;\n\t}\n};\n\nconst ensureTsConfig = (location: PackageLocation) => {\n\tconst tsconfigPath = path.join(location.scriptsDir, \"tsconfig.json\");\n\n\tif (!fs.existsSync(tsconfigPath)) {\n\t\tconst content = {};\n\t\tapplyTsConfigOption(content);\n\n\t\tfs.writeFileSync(\n\t\t\ttsconfigPath,\n\t\t\tJSON.stringify(content, undefined, \"\\t\"),\n\t\t\t\"utf8\",\n\t\t);\n\t} else {\n\t\tconst content = JSON.parse(fs.readFileSync(tsconfigPath, \"utf8\"));\n\t\tapplyTsConfigOption(content);\n\t\tfs.writeFileSync(\n\t\t\ttsconfigPath,\n\t\t\tJSON.stringify(content, undefined, \"\\t\"),\n\t\t\t\"utf8\",\n\t\t);\n\t}\n};\n\nconst applyTsConfigOption = (data: {\n\tcompilerOptions?: { target?: string; lib?: string[] };\n}) => {\n\tdata.compilerOptions = data.compilerOptions ?? {};\n\tdata.compilerOptions.target = \"es5\";\n\tdata.compilerOptions.lib = [\"es5\", \"dom\"];\n};\n\nconst sortPackagesByBuildOrder = (\n\tfolders: PackageLocation[],\n): PackageLocation[] => {\n\tconst packages = Array.from(folders).reduce(\n\t\t(\n\t\t\tacc: Record<string, FolderData>,\n\t\t\tlocation,\n\t\t): Record<string, FolderData> => {\n\t\t\tconst data = readPackageNpmManifest(location);\n\n\t\t\tif (data !== undefined) {\n\t\t\t\tacc[data.name] = {\n\t\t\t\t\tdata,\n\t\t\t\t\tlocation,\n\t\t\t\t};\n\t\t\t} else {\n\t\t\t\tacc[location.path] = {\n\t\t\t\t\tdata: undefined,\n\t\t\t\t\tlocation,\n\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn acc;\n\t\t},\n\t\t{},\n\t);\n\n\tconst packageDependencies = Object.getOwnPropertyNames(packages).reduce(\n\t\t(acc, packageName) => {\n\t\t\tconst packageData = packages[packageName];\n\n\t\t\tif (packageData.data === undefined) {\n\t\t\t\tacc[packageName] = [];\n\t\t\t} else {\n\t\t\t\tacc[packageName] = Object.getOwnPropertyNames({\n\t\t\t\t\t...packageData.data.devDependencies,\n\t\t\t\t\t...packageData.data.dependencies,\n\t\t\t\t\t...packageData.data.peerDependencies,\n\t\t\t\t}).filter((packageName) => packages[packageName] !== undefined);\n\t\t\t}\n\n\t\t\treturn acc;\n\t\t},\n\t\t{},\n\t);\n\n\tconst sortedPackages = toposort(packageDependencies);\n\tconst result: PackageLocation[] = [];\n\n\tfor (const packageName of sortedPackages) {\n\t\tconst location = packages[packageName].location;\n\n\t\tif (readPackageCreatorManifest(location).Package.endsWith(\".Basics\")) {\n\t\t\tresult.unshift(location);\n\t\t} else {\n\t\t\tresult.push(location);\n\t\t}\n\t}\n\n\treturn result;\n};\n\nconst createBannerComment = (banner: BannerOptions) => {\n\tconst bannerParts: string[] = [];\n\n\tif (banner.text) {\n\t\tbannerParts.push(\" * \" + banner.text);\n\t}\n\n\t{\n\t\tconst details: string[] = [];\n\n\t\tif (banner.version) {\n\t\t\tdetails.push(`Version: ${banner.version}`);\n\t\t}\n\t\tif (banner.commit) {\n\t\t\tif (banner.commitDirty) {\n\t\t\t\tdetails.push(`Commit: ${banner.commit} (dirty)`);\n\t\t\t} else {\n\t\t\t\tdetails.push(`Commit: ${banner.commit}`);\n\t\t\t}\n\t\t}\n\t\tif (banner.date) {\n\t\t\tdetails.push(`Date: ${banner.date.toISOString()}`);\n\t\t}\n\n\t\tconst detailsText = details.map((line) => ` * ${line}`).join(\"\\n\");\n\t\tif (detailsText) {\n\t\t\tbannerParts.push(detailsText);\n\t\t}\n\t}\n\n\tconst bannerText = bannerParts.join(\"\\n\\n\");\n\n\tif (bannerText) {\n\t\treturn `/*\n${bannerText}\n*\n* @preserve\t\t\t\n*/`;\n\t}\n\n\treturn undefined;\n};\n"],"names":["logPackageMessage","name","step","index","total","numLength","undefined","toString","length","indexString","padStart","identifierString","padEnd","console","log","tryReadTsConfig","location","config","ts","readConfigFile","path","join","scriptsDir","fs","readFileSync","build","outputDir","compilerOptions","lib","result","convertCompilerOptionsFromJson","options","removeComments","declaration","sourceMap","outFile","target","ScriptTarget","ES5","noEmitOnError","host","createCompilerHost","getCurrentDirectory","js","definitions","writeFile","fileName","data","writeByteOrderMark","endsWith","files","getPackageTypescriptFiles","Error","programOptions","rootNames","program","createProgram","emitResult","emit","allDiagnostics","getPreEmitDiagnostics","emitSkipped","map","createErrorMessage","error","diagnostic","file","flattenDiagnosticMessageText","messageText","line","character","getLineAndCharacterOfPosition","start","message","generateDocs","declarationFile","outFolder","app","typedoc","Application","mediaDir","manifestDir","bootstrap","entryPoints","media","out","tsconfig","skipErrorChecking","setCompilerOptions","setValue","readmePath","glob","sync","absolute","cwd","project","convert","toposort","packages","queue","Object","getOwnPropertyNames","queueEntry","dependencies","dependencyQueued","some","dependency","includes","splice","push","buildFolders","outDir","clean","rmSync","recursive","workspace","folders","sortedPackages","sortPackagesByBuildOrder","skipPackagesWithoutTsFiles","ensureTsConfig","readPackageCreatorManifest","logStep","Package","outputDirectory","mkdirSync","buildResult","tscBuild","banner","createBannerComment","writeFileSync","encoding","minimize","minifyResult","terser","minify","ecma","minifiedPath","code","docs","tsconfigPath","existsSync","content","applyTsConfigOption","JSON","stringify","parse","Array","from","reduce","acc","readPackageNpmManifest","packageDependencies","packageName","packageData","devDependencies","peerDependencies","filter","unshift","bannerParts","text","details","version","commit","commitDirty","date","toISOString","detailsText","bannerText"],"mappings":"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"}
|
|
@@ -2,14 +2,14 @@ import * as path from 'path';
|
|
|
2
2
|
import * as fs from 'fs';
|
|
3
3
|
import { pipeline } from 'stream/promises';
|
|
4
4
|
import { execSync } from 'child_process';
|
|
5
|
-
import { r as readPublishedPackageCreatorIndex, d as determineWorkspaceIGLibraries, a as readPublishedPackageNpmManifest, b as readPublishedPackageCreatorManifest } from './dependencies-
|
|
6
|
-
import { P as PACKAGE_FILE, I as INDEX_FILE, p as parseCreatorPackageName, g as getWorkspaceOutputPath, r as readPackageCreatorManifest, w as writePackageCreatorManifest, a as readPackageAnimationList, i as isErrorENOENT, b as readPackageCreatorIndex, c as readWorkspaceNpmManifest, u as uploadPackage, d as getPackageReleasesDirectory, e as getExistingPackages, s as startSession, f as closeSession } from './cli-
|
|
7
|
-
import { l as logPackageMessage, b as buildFolders } from './index-
|
|
5
|
+
import { r as readPublishedPackageCreatorIndex, d as determineWorkspaceIGLibraries, a as readPublishedPackageNpmManifest, b as readPublishedPackageCreatorManifest } from './dependencies-300450ae.js';
|
|
6
|
+
import { P as PACKAGE_FILE, I as INDEX_FILE, p as parseCreatorPackageName, g as getWorkspaceOutputPath, r as readPackageCreatorManifest, w as writePackageCreatorManifest, a as readPackageAnimationList, i as isErrorENOENT, b as readPackageCreatorIndex, c as readWorkspaceNpmManifest, u as uploadPackage, d as getPackageReleasesDirectory, e as getExistingPackages, s as startSession, f as closeSession } from './cli-2c3347fd.js';
|
|
7
|
+
import { l as logPackageMessage, b as buildFolders } from './index-01b0ddab.js';
|
|
8
8
|
import 'write-pkg';
|
|
9
9
|
import 'glob';
|
|
10
10
|
import 'node:path';
|
|
11
11
|
import 'node:fs';
|
|
12
|
-
import { g as getVersionFileHandler, p as parseVersionFromString, a as getVersionInformationFromGit, b as getWorkspaceBannerText, c as parseVersionFromNumericVersion, P as PackageVersion } from './versionFile-
|
|
12
|
+
import { g as getVersionFileHandler, p as parseVersionFromString, a as getVersionInformationFromGit, b as getWorkspaceBannerText, c as parseVersionFromNumericVersion, P as PackageVersion } from './versionFile-af5ed4bc.js';
|
|
13
13
|
import Ajv from 'ajv';
|
|
14
14
|
import axios from 'axios';
|
|
15
15
|
import JSZip from 'jszip';
|
|
@@ -477,4 +477,4 @@ const createSessionManager = async params => {
|
|
|
477
477
|
};
|
|
478
478
|
|
|
479
479
|
export { releaseFolder };
|
|
480
|
-
//# sourceMappingURL=index-
|
|
480
|
+
//# sourceMappingURL=index-f59e50ec.js.map
|