Skip to content

Commit

Permalink
Build: make all versions in a file equal
Browse files Browse the repository at this point in the history
  • Loading branch information
kassens committed Mar 6, 2023
1 parent 6e1756a commit c0ae162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/rollup/build-all-release-channels.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ function updatePlaceholderReactVersionInCompiledArtifacts(

for (const artifactFilename of artifactFilenames) {
const originalText = fs.readFileSync(artifactFilename, 'utf8');
const replacedText = originalText.replace(
const replacedText = originalText.replaceAll(
PLACEHOLDER_REACT_VERSION,
newVersion
);
Expand Down

0 comments on commit c0ae162

Please sign in to comment.