Skip to content

Commit

Permalink
Fix build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjoDiaz committed Nov 3, 2020
1 parent 5000a95 commit d1a9518
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.deno.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function processDir(src, dest) {
writeFileSync(
destPath,
readFileSync(currentPath).toString().replace(
/from '(\.[.\\/-\w]+)'/gm,
/from "(\.[.\\/-\w]+)"/gm,
"from '$1.ts'",
),
);
Expand Down
2 changes: 1 addition & 1 deletion build.mjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function processDir(src) {
writeFileSync(
currentPath.replace(/\.js$/, ".mjs"),
readFileSync(currentPath).toString().replace(
/from '(\.[.\\/-\w]+)'/gm,
/from "(\.[.\\/-\w]+)"/gm,
"from '$1.mjs'",
),
);
Expand Down

0 comments on commit d1a9518

Please sign in to comment.