Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 174d387

Browse files
CallumNZarchmoj
andauthoredApr 14, 2023
Update tasks/partial_bundle.js with missing semicolon.
Co-authored-by: Mojtaba Samimi <[email protected]>
1 parent a1d8c9c commit 174d387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tasks/partial_bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = function partialBundle(tasks, opts) {
3636
// remove require
3737
var regEx = WHITESPACE_BEFORE + 'require\\(\'\\./' + t + '\'\\),';
3838
if(strict) {
39-
regEx += '|require\\(\'\\.\\./src/traces/' + t + '/strict\'\\),'
39+
regEx += '|require\\(\'\\.\\./src/traces/' + t + '/strict\'\\),';
4040
}
4141
var newCode = partialIndex.replace(new RegExp(regEx, 'g'), '');
4242

0 commit comments

Comments
 (0)
Please sign in to comment.