Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shayan/52349/upgrade react to version 17 #25

Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
31692e8
refactor: changed files to be compatible with react-17
Aug 10, 2022
7adc6af
fix/ fixed some errors
Aug 14, 2022
2820b87
Merge branch 'mobx-migration-to-version-6' of github.com:niloo-fs/der…
Aug 14, 2022
7915170
Merge branch 'mobx-migration-to-version-6' of github.com:niloo-fs/der…
Aug 17, 2022
b0c1a54
Merge branch mobx-migration-to-version-6 of github.com:niloo-fs/deriv…
Aug 22, 2022
8298389
fix: fixed eslint errors related to react17 changes
Aug 22, 2022
61cfa8b
Merge branch mobx-migration-to-version-6 of github.com:niloo-fs/deriv…
Aug 25, 2022
d762de8
build: updated package-lock.json
Aug 25, 2022
1abf2ff
Niloofar | Shayan / MobX migration to version 6 for deriv-app (#5882)
niloofar-deriv Aug 29, 2022
a6fad14
Shayan/74390/Fix TS Config for P2P (#6285)
shayan-deriv Aug 29, 2022
6e8386c
Adrienne / Changed styling for Inactive chip and long text is wrapped…
adrienne-deriv Aug 29, 2022
2c46006
Ameerul /Bug #65052 Inconsistent scrolling behaviour (#5505)
ameerul-deriv Aug 29, 2022
11e4287
Suisin/suspended message added (#6163)
suisin-deriv Aug 29, 2022
a80262c
bahar/folder-structure-refactor (#5871)
Aug 29, 2022
68351b8
added margin-top to trading.scss (#6156)
aizad-deriv Aug 29, 2022
d7d5345
likhith/fix warnings and errors on app startup (#6179)
likhith-deriv Aug 29, 2022
529dd2e
Amina/fix: next button enabled for svg account even after account add…
amina-deriv Aug 29, 2022
1147568
Suisin/Updated Sign up Modal Message (#6126)
suisin-deriv Aug 29, 2022
9d62506
Ameerul /Task 71473 update string for selecting payment method (#6106)
ameerul-deriv Aug 29, 2022
f120ff9
Handle timeout in account transfer form (#6270)
Aug 29, 2022
eb47cbe
yauheni / 73461 extra white space between Choose Country and Next but…
yauheni-deriv Aug 29, 2022
d1762d4
farrah/ fixed payment method field validations (#6108)
farrah-deriv Aug 29, 2022
ff832bb
translations: 📚 sync translations with crowdin (#6326)
github-actions[bot] Aug 29, 2022
774dc24
Farzin/72980/Migrate `cashier` to `mobx-react-lite` (#6161)
farzin-deriv Aug 29, 2022
3b2b703
Add redirect url for p2p to AASA (#6327)
nijil-deriv Aug 29, 2022
a1f8ed0
fixed error on change of payment method fields (#6328)
farrah-deriv Aug 30, 2022
4219ef5
Fix currency issue on real accounts with no currency (#6329)
matin-deriv Aug 30, 2022
3abecb9
Merge branch 'mobx-migration-to-version-6' of github.com:niloo-fs/der…
Aug 30, 2022
292f8f0
Merge branch 'master' of github.com:binary-com/deriv-app into shayan/…
Aug 30, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e_tests/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ module.exports = {
},
},
},
transformIgnorePatterns: ['/node_modules/(?!react-virtualized).+\\.js$', '_utils/websocket.js'],
transformIgnorePatterns: ['/node_modules/(?!@enykeev/react-virtualized).+\\.js$', '_utils/websocket.js'],
reporters: ['default', './src/_utils/cli_reporter.js'],
};
2 changes: 1 addition & 1 deletion jest.config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
coverageDirectory: './coverage/',
testRegex: '(/__tests__/.*|(\\.)(test|spec))\\.(js|tsx)?$',
// This is needed to transform es modules imported from node_modules of the target component.
transformIgnorePatterns: ['/node_modules/(?!react-virtualized).+\\.js$'],
transformIgnorePatterns: ['/node_modules/(?!@enykeev/react-virtualized).+\\.js$'],
setupFiles: ['<rootDir>/../../jest.setup.js'],
setupFilesAfterEnv: ['<rootDir>/../../setupTests.js'],
};
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ module.exports = {
'^.+/es/^.+$': 'babel-jest',
},
testRegex: ['__tests__', '.*.spec.js'],
transformIgnorePatterns: ['/node_modules/(?!react-virtualized).+\\.js$'],
transformIgnorePatterns: ['/node_modules/(?!@enykeev/react-virtualized).+\\.js$'],
};
Loading