-
Notifications
You must be signed in to change notification settings - Fork 410
/
Copy pathdepcheck.ts
185 lines (164 loc) · 5.08 KB
/
depcheck.ts
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/* eslint no-console: 0 */
import { join, relative } from 'path';
import chalk from 'chalk';
import depcheck from 'depcheck';
import { existsSync, readdirSync } from 'fs-extra';
import { argv } from '../packages/core-common/src/node/cli';
const packagesDir = join(__dirname, '../packages');
const ghostDepsWhiteLists = [
// common deps from `@opensumi/ide-core-browser` or `@opensumi/ide-core-node`.
'@opensumi/di',
'ajv',
'fuzzy',
'jsonc-parser',
'classnames',
'react',
'react-dom',
'fs-extra',
'lodash',
'@opensumi/monaco-editor-core',
'@opensumi/vscode-debugprotocol',
'vscode',
'sumi',
'vscode-textmate',
'react-window',
'vscode-languageserver-types',
'react-is',
'ws',
'koa',
];
const moduleAllowList = {
'core-common': ['electron'],
'file-service': ['@furyjs/fury'],
};
const options = {
ignoreBinPackage: false, // ignore the packages with bin entry
skipMissing: false, // skip calculation of missing dependencies
ignoreDirs: ['bower_components', 'node_modules', 'lib', '__tests__', '__test__'],
ignoreMatches: [
// devtool related
'@opensumi/ide-dev-tool',
'npm-run-all',
'ts-node',
'webpack-dev-server',
'@types/*',
'tinybench',
],
ignorePatterns: ['__tests__', '__test__', '__mocks__'],
parsers: {
// the target parsers
'**/*.ts': depcheck.parser.typescript,
'**/*.tsx': depcheck.parser.typescript,
},
detectors: [
// the target detectors
depcheck.detector.requireCallExpression,
depcheck.detector.importDeclaration,
],
specials: [
// the target special parsers
depcheck.special.eslint,
depcheck.special.webpack,
],
};
function check(
rootDir: string,
targetModuleName: string,
config = {
unusedDependency: true,
unusedDevDependency: true,
missing: true,
},
) {
const allowList = moduleAllowList[targetModuleName] || [];
return new Promise<void>((resolve, reject) => {
const cwd = process.cwd();
depcheck(rootDir, options, (unused) => {
if (config.unusedDependency) {
if (unused.dependencies.length > 0) {
console.log(chalk.yellow('Unused dependencies (or dynamic import):'));
unused.dependencies.forEach((dependency) => {
console.log('* ' + dependency);
});
} else {
// console.log(chalk.greenBright('No unused dependency'));
}
}
if (config.unusedDevDependency) {
if (unused.devDependencies.length > 0) {
console.log(chalk.yellow('Unused devDependencies:'));
unused.devDependencies.forEach((dependency) => {
console.log('* ' + dependency);
});
}
}
let missed = false;
if (config.missing) {
let missingDeps = Object.keys(unused.missing).filter(
(dep) => !ghostDepsWhiteLists.includes(dep) && (!rootDir.endsWith('browser') || !rootDir.endsWith('node')),
);
// 排除自身对模块的引用影响
missingDeps = missingDeps.filter((dep) => !rootDir.endsWith(dep.split('ide-')[1]));
if (missingDeps.length > 0) {
console.log(chalk.red('Missing dependencies:'));
missingDeps.forEach((dependency) => {
console.log(chalk.red(`* ${dependency} used in:`));
unused.missing[dependency].forEach((referencePath, index) => {
console.log(` ${index + 1}. ${relative(cwd, referencePath)}`);
});
if (!allowList.includes(dependency)) {
missed = true;
}
});
}
}
if (missed) {
reject('has missing dependencies');
} else {
resolve();
}
});
});
}
async function runTaskWithPackages(targetPacks: string[]) {
for (const targetModuleName of targetPacks) {
const packageDir = join(packagesDir, targetModuleName);
if (packageDir.startsWith('.') || !existsSync(join(packageDir, 'package.json'))) {
console.log(chalk.bgYellow(`${targetModuleName} is invalid module`));
continue;
}
console.log(chalk.greenBright(`--- [Deps check: ${targetModuleName}] ---`));
try {
await check(packageDir, targetModuleName);
} catch (error) {
console.log(chalk.red(`${targetModuleName} has missing dependencies`));
process.exit(1);
}
console.log('');
}
process.exit();
}
async function bootAll() {
const packagesDirNames = readdirSync(packagesDir);
const targetPacks = packagesDirNames.reduce((prev, modulePath) => {
// 前端依赖都安装到了 core-browser 里面,跳过检查
if (['core-browser'].includes(modulePath)) {
return prev;
}
prev.push(modulePath);
return prev;
}, [] as string[]);
runTaskWithPackages(targetPacks);
}
const targetModule = argv.module as string;
if (targetModule) {
console.log(`Single module mode dependency check: ${targetModule}`);
const moduleName = targetModule.replace(/@opensumi\//, '');
runTaskWithPackages([moduleName]).catch((err) => {
console.log(chalk.red(`${moduleName} has missing dependencies`));
process.exit(1);
});
} else {
console.log('Project level dependency check');
bootAll();
}