68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
const pluginPath = path.join(__dirname, '../src/plugins');
|
|
const pluginFolders = fs.readdirSync(pluginPath);
|
|
|
|
function resetPackageJson() {
|
|
const packageJsonPath = path.join(__dirname, '..', 'package.json');
|
|
const packageJsonContent = require(packageJsonPath);
|
|
const dependencies = packageJsonContent.dependencies;
|
|
for (const key in dependencies) {
|
|
if (dependencies[key].startsWith('workspace')) {
|
|
delete dependencies[key];
|
|
}
|
|
}
|
|
fs.writeFileSync(
|
|
packageJsonPath,
|
|
JSON.stringify(packageJsonContent, null, 2),
|
|
);
|
|
}
|
|
|
|
function addPluginToPackageJson(packageName) {
|
|
const packageJsonPath = path.join(__dirname, '..', 'package.json');
|
|
const packageJsonContent = require(packageJsonPath);
|
|
packageJsonContent.dependencies[packageName] = 'workspace:*';
|
|
|
|
fs.writeFileSync(
|
|
packageJsonPath,
|
|
JSON.stringify(packageJsonContent, null, 2),
|
|
);
|
|
}
|
|
|
|
|
|
resetPackageJson();
|
|
|
|
pluginFolders.forEach((folder) => {
|
|
const pluginFolder = path.join(pluginPath, folder);
|
|
const stat = fs.statSync(pluginFolder);
|
|
|
|
if (stat.isDirectory() && folder !== 'builtin') {
|
|
if (!fs.existsSync(path.join(pluginFolder, 'index.ts'))) {
|
|
return;
|
|
}
|
|
const packageJson = require(path.join(pluginFolder, 'package.json'));
|
|
const packageName = packageJson.name;
|
|
|
|
addPluginToPackageJson(packageName);
|
|
}
|
|
}); |