Skip to content

Commit

Permalink
chore: bump deps (#11523)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Jun 4, 2021
1 parent 155e7d0 commit f628b45
Show file tree
Hide file tree
Showing 10 changed files with 558 additions and 1,203 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,9 @@

### Fixes

- `[jest-reporter]` Allow `node-notifier@10` as peer dependency ([#11523](https://github.com/facebook/jest/pull/11523))
- `[jest-reporter]` Update `v8-to-istanbul` ([#11523](https://github.com/facebook/jest/pull/11523))

### Chore & Maintenance

### Performance
Expand Down
Expand Up @@ -5,8 +5,8 @@
* LICENSE file in the root directory of this source tree.
*/

import * as types from './types';
import * as types from '../types';

test('dummy-test', () => {
expect(types).toEqual({default: {}});
expect(types).toEqual({});
});
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -64,7 +64,7 @@
"mlh-tsd": "^0.14.1",
"mock-fs": "^4.4.1",
"netlify-plugin-cache": "^1.0.3",
"node-notifier": "^9.0.0",
"node-notifier": "^10.0.0",
"prettier": "^2.1.1",
"progress": "^2.0.0",
"promise": "^8.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-cli/package.json
Expand Up @@ -31,7 +31,7 @@
"@types/yargs": "^16.0.0"
},
"peerDependencies": {
"node-notifier": "^8.0.1 || ^9.0.0"
"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
"node-notifier": {
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-core/package.json
Expand Up @@ -49,7 +49,7 @@
"jest-snapshot-serializer-raw": "^1.1.0"
},
"peerDependencies": {
"node-notifier": "^8.0.1 || ^9.0.0"
"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
"node-notifier": {
Expand Down
1 change: 0 additions & 1 deletion packages/jest-haste-map/package.json
Expand Up @@ -29,7 +29,6 @@
},
"devDependencies": {
"@jest/test-utils": "^27.0.2",
"@types/anymatch": "^1.3.1",
"@types/fb-watchman": "^2.0.0",
"@types/micromatch": "^4.0.1",
"jest-snapshot-serializer-raw": "^1.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/jest-reporters/package.json
Expand Up @@ -32,7 +32,7 @@
"source-map": "^0.6.0",
"string-length": "^4.0.1",
"terminal-link": "^2.0.0",
"v8-to-istanbul": "^7.0.0"
"v8-to-istanbul": "^8.0.0"
},
"devDependencies": {
"@jest/test-utils": "^27.0.2",
Expand All @@ -49,7 +49,7 @@
"strip-ansi": "^6.0.0"
},
"peerDependencies": {
"node-notifier": "^8.0.1 || ^9.0.0"
"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
"node-notifier": {
Expand Down
1 change: 0 additions & 1 deletion packages/jest-reporters/src/CoverageReporter.ts
Expand Up @@ -98,7 +98,6 @@ export default class CoverageReporter extends BaseReporter {
maxCols: process.stdout.columns || Infinity,
...additionalOptions,
})
// @ts-expect-error
.execute(reportContext);
});
aggregatedResults.coverageMap = map;
Expand Down
2 changes: 1 addition & 1 deletion packages/jest/package.json
Expand Up @@ -15,7 +15,7 @@
"jest-cli": "^27.0.4"
},
"peerDependencies": {
"node-notifier": "^8.0.1 || ^9.0.0"
"node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
},
"peerDependenciesMeta": {
"node-notifier": {
Expand Down

0 comments on commit f628b45

Please sign in to comment.