Skip to content

Commit 0e2145b

Browse files
authored
fix(jest-util): add jest-regex-util as a dependency` (#15030)
1 parent 726ca20 commit 0e2145b

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
- `[jest-leak-detector]` Make leak-detector more aggressive when running GC ([#14526](https://github.com/jestjs/jest/pull/14526))
5555
- `[jest-runtime]` Properly handle re-exported native modules in ESM via CJS ([#14589](https://github.com/jestjs/jest/pull/14589))
5656
- `[jest-util]` Make sure `isInteractive` works in a browser ([#14552](https://github.com/jestjs/jest/pull/14552))
57+
- `[jest-util]` Add missing dependency on `jest-regex-util` ([#15030](https://github.com/jestjs/jest/pull/15030))
5758
- `[pretty-format]` [**BREAKING**] Print `ArrayBuffer` and `DataView` correctly ([#14290](https://github.com/jestjs/jest/pull/14290))
5859
- `[jest-cli]` When specifying paths on the command line, only match against the relative paths of the test files ([#12519](https://github.com/jestjs/jest/pull/12519))
5960
- [**BREAKING**] Changes `testPathPattern` configuration option to `testPathPatterns`, which now takes a list of patterns instead of the regex.

packages/jest-util/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"chalk": "^4.0.0",
2525
"ci-info": "^4.0.0",
2626
"graceful-fs": "^4.2.9",
27+
"jest-regex-util": "workspace:*",
2728
"picomatch": "^4.0.0"
2829
},
2930
"devDependencies": {

packages/jest-util/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
},
77
"include": ["./src/**/*"],
88
"exclude": ["./**/__tests__/**/*"],
9-
"references": [{"path": "../jest-types"}]
9+
"references": [{"path": "../jest-regex-util"}, {"path": "../jest-types"}]
1010
}

yarn.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13302,6 +13302,7 @@ __metadata:
1330213302
chalk: ^4.0.0
1330313303
ci-info: ^4.0.0
1330413304
graceful-fs: ^4.2.9
13305+
jest-regex-util: "workspace:*"
1330513306
picomatch: ^4.0.0
1330613307
languageName: unknown
1330713308
linkType: soft

0 commit comments

Comments
 (0)