feat(core): Refactor directory reading and module discovery for publishing process

This commit is contained in:
2024-10-26 14:08:23 +02:00
parent 386504b0fb
commit dc97693ec8
6 changed files with 3085 additions and 4133 deletions

1
ts/interfaces/index.ts Normal file
View File

@ -0,0 +1 @@
export * from './tspublish.js';

View File

@ -0,0 +1,5 @@
export interface ITsPublishJson {
name: string;
dependencies: string[];
registries: string[];
}