1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-19 15:34:16 +00:00
2020-12-14 20:29:29 +01:00

10 lines
259 B
JavaScript

const { readdirSync } = require('fs');
const { join } = require('path');
const process = require('process')
module.exports = function getPackages() {
return readdirSync(join(process.cwd(), './packages')).filter(
(pkg) => pkg.charAt(0) !== '.',
);
};