tspublish/ts/classes.tspublish.ts

44 lines
1.6 KiB
TypeScript
Raw Normal View History

2024-10-21 10:16:09 +00:00
import { logger } from './logging.js';
import * as plugins from './plugins.js';
import * as interfaces from './interfaces/index.js';
2024-10-21 10:16:09 +00:00
import { PublishModule } from './classes.publishmodule.js';
export class TsPublish {
constructor() {}
public async publish (monorepoDirArg: string) {
const publishModules = await this.getModuleSubDirs(monorepoDirArg);
console.log(`Found ${Object.keys(publishModules).length} publish modules:`);
console.log(Object.keys(publishModules));
for (const publishModule of Object.keys(publishModules)) {
2024-10-21 10:16:09 +00:00
const publishModuleInstance = new PublishModule({
monoRepoDir: monorepoDirArg,
packageSubFolder: publishModule,
});
await publishModuleInstance.init();
await publishModuleInstance.createPublishModuleDir();
await publishModuleInstance.build();
await publishModuleInstance.publish();
2024-10-21 10:16:09 +00:00
}
}
public async getModuleSubDirs (dirArg: string) {
2024-10-21 10:16:09 +00:00
const subDirs = await plugins.smartfile.fs.listFolders(dirArg);
const publishModules: {[key: string]: interfaces.ITsPublishJson} = {};
2024-10-21 10:16:09 +00:00
for (const subDir of subDirs) {
if (!subDir.startsWith('ts')) {
continue;
}
const fileTree = await plugins.smartfile.fs.listFileTree(subDir, '**/*');
const hasPublishJson = fileTree.includes('tspublish.json');
if (!hasPublishJson) {
continue;
}
logger.log('info', `found publish module: ${subDir}`);
publishModules[subDir] = JSON.parse(plugins.smartfile.fs.toStringSync(plugins.path.join(subDir, 'tspublish.json')));
2024-10-21 10:16:09 +00:00
}
logger.log('ok', `found ${publishModules.length} publish modules`);
return publishModules;
}
}