forked from eclipse-theia/theia
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcompile-references.js
150 lines (136 loc) · 5.42 KB
/
compile-references.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
// @ts-check
'use-strict';
// *****************************************************************************
// Copyright (C) 2020 Ericsson and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
/**
* This script generates tsconfig references between our workspaces.
*
* `tsc` build mode relies on these references to build out of date dependencies
* only when required, but it cannot infer workspaces by itself, it has to be
* explicitly defined [1].
*
* [1]: https://www.typescriptlang.org/docs/handbook/project-references.html
*/
const cp = require('child_process');
const path = require('path');
const fs = require('fs');
const ROOT = path.join(__dirname, '..');
const FORCE_REWRITE = process.argv.includes('--force-rewrite');
const PACKAGE_LIST = JSON.parse(cp.execSync('npx lerna ls --loglevel=silent --all --json', { cwd: ROOT }).toString());
const DEPENDENCIES = JSON.parse(cp.execSync('npx lerna ls --loglevel=silent --all --graph', { cwd: ROOT }).toString());
compileTypeScriptReferences().catch(error => {
console.error(error);
process.exitCode = 1;
})
/**
* This script main entry point.
*/
async function compileTypeScriptReferences() {
await Promise.all(Object.values(PACKAGE_LIST).map(async package => {
const references = await getTypescriptReferences(package);
await configureTypeScriptReferences(package, references);
}))
}
/**
* @param {WorkspacePackage} requestedPackage
* @returns {Promise<string[]>} TypeScript relative project references for `requestedPackage`.
*/
async function getTypescriptReferences(requestedPackage) {
const dependencies = DEPENDENCIES[requestedPackage.name] || [];
const references = await Promise.all(dependencies.map(async dependency => {
const depWorkspace = PACKAGE_LIST.find(package => package.name === dependency);
if (!depWorkspace) {
return undefined;
}
const depConfig = path.join(depWorkspace.location, 'tsconfig.json');
if (!await fileExists(depConfig)) {
return undefined; // ignore because dep has no tsconfig
}
return path.relative(requestedPackage.location, depWorkspace.location).replaceAll('\\', '/');
}));
return references.filter(reference => reference !== undefined);
}
/**
* Wires a given compilation tsconfig file according to the provided references.
* This allows TypeScript to operate in build mode.
*
* @param {WorkspacePackage} targetPackage for debug purpose.
* @param {string[]} expectedReferences list of paths to the related project roots.
* @returns {Promise<boolean>} rewrite was needed.
*/
async function configureTypeScriptReferences(targetPackage, expectedReferences) {
expectedReferences = [...expectedReferences].sort();
let needRewrite = FORCE_REWRITE;
const tsconfigPath = path.resolve(targetPackage.location, 'tsconfig.json');
if (!await fileExists(tsconfigPath)) {
return false;
}
const tsconfigJson = await readJsonFile(tsconfigPath);
if (!tsconfigJson.compilerOptions) {
// Somehow no `compilerOptions` literal is defined.
tsconfigJson.compilerOptions = {
composite: true,
rootDir: 'src',
outDir: 'lib',
};
needRewrite = true;
} else if (!tsconfigJson.compilerOptions.composite) {
// `compilerOptions` is missing the `composite` literal.
tsconfigJson.compilerOptions = {
composite: true,
...tsconfigJson.compilerOptions,
};
needRewrite = true;
}
/** @type {string[]} */
const currentReferences = (tsconfigJson['references'] || []).map(reference => reference.path);
// Compare both arrays: if an element is not the same we need to rewrite.
needRewrite = needRewrite
|| currentReferences.length !== expectedReferences.length
|| currentReferences.some((reference, index) => expectedReferences[index] !== reference);
if (needRewrite) {
tsconfigJson.references = expectedReferences.map(path => ({ path }));
const content = JSON.stringify(tsconfigJson, undefined, 2);
await fs.promises.writeFile(tsconfigPath, content + '\n');
console.warn(`info: ${tsconfigPath} updated.`);
}
return needRewrite;
}
/**
* @param {string} filePath
* @returns {Promise<any>}
*/
async function readJsonFile(filePath) {
try {
return JSON.parse(await fs.promises.readFile(filePath, 'utf8'));
} catch (error) {
console.error('ParseError in file:', filePath);
throw error;
}
}
/**
* @param {string} file
* @returns {Promise<boolean>}
*/
function fileExists(file) {
return fs.promises.access(file, fs.constants.R_OK | fs.constants.W_OK)
.then(ok => true, error => false)
}
/**
* @typedef WorkspacePackage
* @property {string} name
* @property {string} location
*/