Skip to content

Commit

Permalink
fix: Issues with Turkish locale
Browse files Browse the repository at this point in the history
Fixes #74

BREAKING CHANGE: The mapping algorithm to map camelCase to snake_case and vice versa has been changed. There is a slight chance that some keys might be mapped differently (although our tests did not reveal anything like that).
  • Loading branch information
jhnns committed Dec 8, 2021
1 parent f2229b1 commit 5831bbc
Show file tree
Hide file tree
Showing 10 changed files with 640 additions and 273 deletions.
4 changes: 3 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
module.exports = {
preset: "ts-jest",
// js-with-ts is currently necessary because we need to transform node_modules, like "map-obj"
preset: "ts-jest/presets/js-with-ts",
setupFiles: ["dotenv/config"],
testPathIgnorePatterns: ["<rootDir>/dist/", "<rootDir>/node_modules/"],
transformIgnorePatterns: ["/node_modules/(?!(map-obj)/)"],
collectCoverage: true,
resolver: "ts-jest-resolver",
globals: {
Expand Down
Loading

0 comments on commit 5831bbc

Please sign in to comment.