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

Upgrade package dependencies #127

Merged
merged 2 commits into from
Feb 26, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## Changelog (master)
* Chore: Upgrade ts-jest and remove `mapCoverage` from `jest-preset` ([#109](https://github.com/thymikee/jest-preset-angular/pull/117))

### v5.1.0
* Feature: Simplify installation by adding @types/jest as a package dependency ([#116](https://github.com/thymikee/jest-preset-angular/pull/116))
* Feature: Move serializers setup to jest config to be possible to override them ([#126](https://github.com/thymikee/jest-preset-angular/pull/116))
* Feature: Move serializers setup to jest config to be possible to override them ([#117](https://github.com/thymikee/jest-preset-angular/pull/116))
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you revert this change?

Copy link
Collaborator Author

@ahnpnl ahnpnl Feb 26, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok. That was a mistake of the URL behind. I already corrected

* Chore: Upgrade example app to Angular 5.2 using Angular CLI 1.6 ([#116](https://github.com/thymikee/jest-preset-angular/pull/116))
* Docs: Add a configuration section with vendor libraries like jQuery ([#117](https://github.com/thymikee/jest-preset-angular/pull/117))

Expand Down
1 change: 0 additions & 1 deletion jest-preset.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"html",
"json"
],
"mapCoverage": true,
"moduleNameMapper": {
"^src/(.*)": "<rootDir>/src/$1",
"^app/(.*)": "<rootDir>/src/app/$1",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"author": "Michał Pierzchała <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/jest": "^22.1.0",
"@types/jest": "^22.1.3",
"jest-zone-patch": "^0.0.8",
"ts-jest": "^22.0.1"
"ts-jest": "^22.4.0"
},
"devDependencies": {
"jest": "^22.1.4",
"jest": "^22.4.0",
"typescript": "~2.5.3"
},
"peerDependencies": {
Expand Down
Loading