feat(core): Enhanced tspublish with ordered compilation and updated dependencies

This commit is contained in:
2024-11-05 00:33:21 +01:00
parent 6b3cd84b65
commit 94c38e21b3
6 changed files with 449 additions and 265 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tspublish',
version: '1.6.0',
version: '1.7.0',
description: 'A tool to publish multiple, concise, and small packages from monorepos, specifically for TypeScript projects within a git environment.'
}

View File

@ -1,4 +1,8 @@
export interface ITsPublishJson {
/**
* the order assures that a project is compiled before another project
*/
order: number;
name: string;
dependencies: string[];
registries: string[];