mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
46 lines
1.4 KiB
JavaScript
Executable file
46 lines
1.4 KiB
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
const path = require('path');
|
|
const glob = require('fast-glob');
|
|
const { LoggerProxy } = require('n8n-workflow');
|
|
const { packageDir, writeJSON } = require('./common');
|
|
const { loadClassInIsolation } = require('../dist/ClassLoader');
|
|
|
|
LoggerProxy.init({
|
|
log: console.log.bind(console),
|
|
warn: console.warn.bind(console),
|
|
});
|
|
|
|
const loadClass = (sourcePath) => {
|
|
try {
|
|
const [className] = path.parse(sourcePath).name.split('.');
|
|
const filePath = path.resolve(packageDir, sourcePath);
|
|
const instance = loadClassInIsolation(filePath, className);
|
|
return { instance, sourcePath, className };
|
|
} catch (e) {
|
|
LoggerProxy.warn(`Failed to load ${sourcePath}: ${e.message}`);
|
|
}
|
|
};
|
|
|
|
const generate = (kind) => {
|
|
const data = glob
|
|
.sync(`dist/${kind}/**/*.${kind === 'nodes' ? 'node' : kind}.js`, {
|
|
cwd: packageDir,
|
|
})
|
|
.filter((filePath) => !/[vV]\d.node\.js$/.test(filePath))
|
|
.map(loadClass)
|
|
.filter((data) => !!data)
|
|
.reduce((obj, { className, sourcePath, instance }) => {
|
|
const name = kind === 'nodes' ? instance.description.name : instance.name;
|
|
if (name in obj) console.error('already loaded', kind, name, sourcePath);
|
|
else obj[name] = { className, sourcePath };
|
|
return obj;
|
|
}, {});
|
|
LoggerProxy.info(`Detected ${Object.keys(data).length} ${kind}`);
|
|
return writeJSON(`known/${kind}.json`, data);
|
|
};
|
|
|
|
(async () => {
|
|
await Promise.all([generate('credentials'), generate('nodes')]);
|
|
})();
|