We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a04e7ea commit bcf729bCopy full SHA for bcf729b
source/OSSLicensesBuilder.js
@@ -96,6 +96,10 @@ function main() {
96
console.error('请先安装 license-checker-rseidelsohn: yarn add license-checker-rseidelsohn');
97
process.exit(1);
98
}
99
+ if (!shell.which('json5')) {
100
+ console.error('请先安装 json5: yarn add json5');
101
+ process.exit(1);
102
+ }
103
const configPath = path.join(__dirname, 'OSSLicensesBuilderConfig.json5');
104
if (!fs.existsSync(configPath)) {
105
console.error(`找不到配置文件: ${configPath}`);
0 commit comments