Skip to content

Commit

Permalink
fix: restore circular export to ease migration (#1702)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Apr 2, 2024
1 parent c3bc824 commit c4bae5a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/index.ts
Expand Up @@ -7,3 +7,9 @@ export default packager;
export { allOfficialArchsForPlatformAndVersion, packager, serialHooks };

export * from './types';

module.exports = packager;
module.exports.allOfficialArchsForPlatformAndVersion = allOfficialArchsForPlatformAndVersion;
module.exports.packager = packager;
module.exports.serialHooks = serialHooks;
module.exports.default = packager;

0 comments on commit c4bae5a

Please sign in to comment.