Skip to content

Commit

Permalink
Merge pull request #528 from adiffmike/issue/527
Browse files Browse the repository at this point in the history
Fixes issue/527
  • Loading branch information
uguraslan authored Apr 11, 2024
2 parents 066bf6b + 5c01532 commit c3780e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/src-to-dist.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ console.log("Copying all JavaScript source code to ./dist...");
shell.find('./src/')
.filter(file => {
const ext = path.extname(file);
return ['.js', '.mjs', '.d.mts', '.d.ts'].includes(ext) && !file.includes('.test.');
return ['.js', '.mjs', '.mts', '.ts'].includes(ext) && !file.includes('.test.');
})
.forEach(file => {
const distFile = path.join('./dist', file);
Expand Down

0 comments on commit c3780e5

Please sign in to comment.