fix(core): Fix issue with tspublish.json name validation in TsPublish class
This commit is contained in:
parent
4e8671a21d
commit
9bddf09aa7
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-11-05 - 1.7.5 - fix(core)
|
||||||
|
Fix issue with tspublish.json name validation in TsPublish class
|
||||||
|
|
||||||
|
- Resolved incorrect JSON parsing and validation for 'name' property in tspublish.json in the TsPublish.publish method.
|
||||||
|
- Removed redundant JSON parse from plugin.smartfile.fs.toStringSync in publish method.
|
||||||
|
|
||||||
## 2024-11-05 - 1.7.4 - fix(classes.tspublish)
|
## 2024-11-05 - 1.7.4 - fix(classes.tspublish)
|
||||||
Refactor getModuleSubDirs method to streamline name validation for publish modules
|
Refactor getModuleSubDirs method to streamline name validation for publish modules
|
||||||
|
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/tspublish',
|
name: '@git.zone/tspublish',
|
||||||
version: '1.7.4',
|
version: '1.7.5',
|
||||||
description: 'A tool to publish multiple, concise, and small packages from monorepos, specifically for TypeScript projects within a git environment.'
|
description: 'A tool to publish multiple, concise, and small packages from monorepos, specifically for TypeScript projects within a git environment.'
|
||||||
}
|
}
|
||||||
|
@ -18,10 +18,7 @@ export class TsPublish {
|
|||||||
}
|
}
|
||||||
for (const publishModule of Object.keys(publishModules)) {
|
for (const publishModule of Object.keys(publishModules)) {
|
||||||
// lets check wether there is a name
|
// lets check wether there is a name
|
||||||
const tspublishJson = JSON.parse(
|
if (!publishModules[publishModule].name) {
|
||||||
plugins.smartfile.fs.toStringSync(plugins.path.join(publishModule, 'tspublish.json')),
|
|
||||||
);
|
|
||||||
if (!tspublishJson.name) {
|
|
||||||
logger.log('warn', `no name found in tspublish.json for ${publishModule}. Skipping...`);
|
logger.log('warn', `no name found in tspublish.json for ${publishModule}. Skipping...`);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user