Skip to content

Commit c4bae5a

Browse files
fix: restore circular export to ease migration (#1702)
1 parent c3bc824 commit c4bae5a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@ export default packager;
77
export { allOfficialArchsForPlatformAndVersion, packager, serialHooks };
88

99
export * from './types';
10+
11+
module.exports = packager;
12+
module.exports.allOfficialArchsForPlatformAndVersion = allOfficialArchsForPlatformAndVersion;
13+
module.exports.packager = packager;
14+
module.exports.serialHooks = serialHooks;
15+
module.exports.default = packager;

0 commit comments

Comments
 (0)