We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01f1580 commit 765cadbCopy full SHA for 765cadb
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## 0.3.33 (2023-12-8)
4
+
5
+- Improve code compatibility with older versions of node.
6
7
## 0.3.32 (2023-09-30)
8
9
- Revert 0.3.31 changes.
src/transformations/fix-import-directives.ts
@@ -37,7 +37,7 @@ export function fixImportDirectives(withPeerProject?: boolean) {
37
const importFromPeer = getData(node).importFromPeer;
38
const importPath = importFromPeer ?? renamePath(imp.file);
39
40
- imports[importPath] ??= [];
+ imports[importPath] ||= [];
41
imports[importPath].push(
42
[
43
importFromPeer === undefined ? renameContract(a.foreign.name) : a.foreign.name,
0 commit comments