File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,18 @@ index 020b3d7..37c3843 100644
1212 const { WritableStreamBuffer } = require("stream-buffers");
1313 const { Signale } = require("signale");
1414
15+ diff --git a/node_modules/multi-semantic-release/lib/multiSemanticRelease.js b/node_modules/multi-semantic-release/lib/multiSemanticRelease.js
16+ index 912a363..ca5b19c 100644
17+ --- a/node_modules/multi-semantic-release/lib/multiSemanticRelease.js
18+ +++ b/node_modules/multi-semantic-release/lib/multiSemanticRelease.js
19+ @@ -1,5 +1,9 @@
20+ const { dirname } = require("path");
21+ - const semanticRelease = require("semantic-release");
22+ + let semanticRelease = require("semantic-release");
23+ + // SR v25 ESM default export compatibility
24+ + if (semanticRelease && typeof semanticRelease !== "function" && typeof semanticRelease.default === "function") {
25+ + semanticRelease = semanticRelease.default;
26+ + }
27+ const { uniq } = require("lodash");
28+ const { check } = require("./blork");
29+ const getLogger = require("./getLogger");
You can’t perform that action at this time.
0 commit comments