fix(core): Fix issue with tspublish.json name validation in TsPublish class
This commit is contained in:
@@ -18,10 +18,7 @@ export class TsPublish {
|
||||
}
|
||||
for (const publishModule of Object.keys(publishModules)) {
|
||||
// lets check wether there is a name
|
||||
const tspublishJson = JSON.parse(
|
||||
plugins.smartfile.fs.toStringSync(plugins.path.join(publishModule, 'tspublish.json')),
|
||||
);
|
||||
if (!tspublishJson.name) {
|
||||
if (!publishModules[publishModule].name) {
|
||||
logger.log('warn', `no name found in tspublish.json for ${publishModule}. Skipping...`);
|
||||
continue;
|
||||
}
|
||||
|
Reference in New Issue
Block a user