mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
// This script lists all dependencies that have package install scripts
|
|
const path = require('path');
|
|
const readInstalled = require('read-installed');
|
|
|
|
const installScripts = ['preinstall', 'install', 'postinstall'];
|
|
|
|
readInstalled('./', { dev: true }, function (err, data) {
|
|
if (err) {
|
|
throw err;
|
|
}
|
|
|
|
const deps = data.dependencies;
|
|
Object.entries(deps).forEach(([packageName, packageData]) => {
|
|
const packageScripts = packageData.scripts || {};
|
|
const scriptKeys = Reflect.ownKeys(packageScripts);
|
|
|
|
const hasInstallScript = installScripts.some((installKey) =>
|
|
scriptKeys.includes(installKey),
|
|
);
|
|
if (!hasInstallScript) {
|
|
return;
|
|
}
|
|
|
|
const matchingScripts = {};
|
|
if (packageScripts.preinstall) {
|
|
matchingScripts.preinstall = packageScripts.preinstall;
|
|
}
|
|
if (packageScripts.install) {
|
|
matchingScripts.install = packageScripts.install;
|
|
}
|
|
if (packageScripts.postinstall) {
|
|
matchingScripts.postinstall = packageScripts.postinstall;
|
|
}
|
|
const scriptNames = Reflect.ownKeys(matchingScripts);
|
|
|
|
const relativePath = path.relative(process.cwd(), packageData.path);
|
|
|
|
console.log(`${packageName}: ${relativePath} ${scriptNames}`);
|
|
});
|
|
});
|