Skip to content

Commit

Permalink
fix: reconciler build (#2943)
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomura authored Nov 16, 2024
1 parent 54ec892 commit 82192b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/soft-seas-watch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@react-pdf/reconciler": patch
---

fix: reconciler build
5 changes: 3 additions & 2 deletions packages/reconciler/src/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
/* eslint-disable import/extensions */
/* eslint-disable import/no-extraneous-dependencies */

import React from 'react';
import createRendererForReact19 from './reconciler-31';
import createRendererForReact18AndLess from './reconciler-26';
import createRendererForReact19 from './reconciler-31.js';
import createRendererForReact18AndLess from './reconciler-26.js';

const isReact19 = React.version.startsWith('19');

Expand Down

0 comments on commit 82192b3

Please sign in to comment.