2 Commits

Author SHA1 Message Date
125be257d6 1.7.1
Some checks failed
Default (tags) / security (push) Failing after 0s
Default (tags) / test (push) Failing after 0s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-11-05 00:33:43 +01:00
d4c7fa8d6b fix(core): Implement error handling for missing publish module directories 2024-11-05 00:33:42 +01:00
3 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,12 @@
# Changelog
## 2024-11-05 - 1.7.1 - fix(core)
Implement error handling for missing publish module directories
- Improved logging for package publish steps
- Enhanced CLI feedback messages during the publishing process
- Restructured package.json to ensure proper dependencies are published
## 2024-11-05 - 1.7.0 - feat(core)
Enhanced tspublish with ordered compilation and updated dependencies

View File

@ -1,6 +1,6 @@
{
"name": "@git.zone/tspublish",
"version": "1.7.0",
"version": "1.7.1",
"private": false,
"description": "A tool to publish multiple, concise, and small packages from monorepos, specifically for TypeScript projects within a git environment.",
"main": "dist_ts/index.js",

View File

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