mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 01:57:57 +00:00
28 lines
761 B
JavaScript
Executable File
28 lines
761 B
JavaScript
Executable File
// Copyright 2017-2026 @pezkuwi/apps authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
const fs = require('node:fs');
|
|
const path = require('node:path');
|
|
|
|
module.exports = function findPackages () {
|
|
const pkgRoot = path.join(__dirname, '..', 'packages');
|
|
|
|
return fs
|
|
.readdirSync(pkgRoot)
|
|
.filter((entry) => {
|
|
const pkgPath = path.join(pkgRoot, entry);
|
|
|
|
return !['.', '..'].includes(entry) &&
|
|
fs.lstatSync(pkgPath).isDirectory() &&
|
|
fs.existsSync(path.join(pkgPath, 'package.json'));
|
|
})
|
|
.map((dir) => {
|
|
const jsonPath = path.join(pkgRoot, dir, 'package.json');
|
|
const { name } = JSON.parse(
|
|
fs.readFileSync(jsonPath).toString('utf-8')
|
|
);
|
|
|
|
return { dir, name };
|
|
});
|
|
};
|