1
0
Fork 0

feat: Added studio to monorepo

This commit is contained in:
joostdecock 2025-04-21 18:20:52 +02:00 committed by Joost De Cock
parent c17b58f141
commit 02f841c570
177 changed files with 2467 additions and 2118 deletions

44
scripts/software.mjs Normal file
View file

@ -0,0 +1,44 @@
import { path, globDir, readJsonFile } from './fs.mjs'
export const getDesigns = async () => {
const designs = {}
const list = await getFolders('designs')
for (const design of list) {
const data = await readJsonFile(['designs', design, 'about.json'])
designs[design] = data
}
return designs
}
export const getPackages = async () => {
const packages = {}
const list = await getFolders('packages')
for (const pkg of list) {
const data = await readJsonFile(['packages', pkg, 'about.json'])
packages[pkg] = data
}
return packages
}
export const getPlugins = async () => {
const plugins = {}
const list = await getFolders('plugins')
for (const plugin of list) {
const data = await readJsonFile(['plugins', plugin, 'about.json'])
plugins[plugin] = data
}
return plugins
}
export const getSoftware = async () => ({
designs: await getDesigns(),
packages: await getPackages(),
plugins: await getPlugins(),
})
// Helper
const getFolders = async (dir) =>
(await globDir(dir, '*')).map((file) => path.basename(file)).sort()