-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: upgrade project dependencies (#862)
BREAKING CHANGE: the library is set to use Node 18 and above, deprecating support for Node 16. Also, some libraries were replaced that might be in use by your project with previous versions. Co-authored-by: Yaniv Franco <[email protected]> Co-authored-by: Baruch Odem <[email protected]>
- Loading branch information
1 parent
3b9301a
commit de0e614
Showing
51 changed files
with
7,069 additions
and
21,475 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v16.19.0 | ||
v18.19.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
// For a detailed explanation regarding each configuration property, visit: | ||
// https://jestjs.io/docs/en/configuration.html | ||
|
||
module.exports = { | ||
/** @type {import('jest').Config} */ | ||
const config = { | ||
preset: 'ts-jest/presets/js-with-babel', | ||
clearMocks: true, | ||
coverageDirectory: 'coverage', | ||
rootDir: './src', | ||
transform: { | ||
'^.+\\.ts$': 'ts-jest' | ||
'^.+\\.ts$': ['ts-jest', { | ||
babelConfig: true, | ||
}], | ||
}, | ||
setupFiles: [ | ||
setupFilesAfterEnv: [ | ||
'./tests/jest-setup.ts', | ||
], | ||
testEnvironment: 'node', | ||
globals: { | ||
'ts-jest': { | ||
babelConfig: true, | ||
} | ||
}, | ||
}; | ||
|
||
module.exports = config; |
Oops, something went wrong.