semantic-release-lerna 2.6.1 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -26587,9 +26587,9 @@ async function loadChangelogConfig(pluginConfig, context) {
|
|
|
26587
26587
|
const __dirname = dirname(fileURLToPath8(import.meta.url));
|
|
26588
26588
|
if (preset) {
|
|
26589
26589
|
const presetPackage = `conventional-changelog-${preset.toLowerCase()}`;
|
|
26590
|
-
loadedConfig = await (import_from_esm_default.silent(__dirname, presetPackage) || import_from_esm_default(cwd, presetPackage))(presetConfig);
|
|
26590
|
+
loadedConfig = await (await import_from_esm_default.silent(__dirname, presetPackage) || await import_from_esm_default(cwd, presetPackage))(presetConfig);
|
|
26591
26591
|
} else if (config) {
|
|
26592
|
-
loadedConfig = await (import_from_esm_default.silent(__dirname, config) || import_from_esm_default(cwd, config))();
|
|
26592
|
+
loadedConfig = await (await import_from_esm_default.silent(__dirname, config) || await import_from_esm_default(cwd, config))();
|
|
26593
26593
|
} else {
|
|
26594
26594
|
loadedConfig = await conventionalChangelogAngular();
|
|
26595
26595
|
}
|