Skip to content

Commit

Permalink
fix(build): Add forgotten parenthesis back into build.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jdecked committed Mar 28, 2024
1 parent 3cf3e7f commit 45cf4b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ function createTwemoji() {
.replace(/^ /gm, '')
// add the RegExp in the right place
.replace('re = /twemoji/', `re = ${regex.toString()}`)
.replace('$VERSION', version);
.replace('$VERSION', version) + '());');

}

Expand Down

0 comments on commit 45cf4b8

Please sign in to comment.