feat(core): Enhanced tspublish with ordered compilation and updated dependencies
This commit is contained in:
@ -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.'
|
||||
}
|
||||
|
@ -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[];
|
||||
|
Reference in New Issue
Block a user