Skip to content

Commit

Permalink
fix: crlf in typings
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-pribilinskiy committed Jul 21, 2022
1 parent f6e235c commit 0b1c7b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/compileTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,5 @@ export function rewritePathsWithExposedFederatedModules(
});

mkdirp.sync(path.dirname(outFile));
fs.writeFileSync(outFile, typingsUpdated);
fs.writeFileSync(outFile, typingsUpdated.replace(/\r\n/g, '\n'));
}

0 comments on commit 0b1c7b0

Please sign in to comment.