Skip to content

Commit 8de9717

Browse files
Demote jest to a dev dependency (#363)
so users are free to use their preferred version of Jest on their system.
1 parent 71d0ba8 commit 8de9717

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/core/cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ yargs(process.argv.slice(2))
9898
"Part of filepath names to include in the instrumentation. " +
9999
'A tailing "/" should be used to include directories and prevent ' +
100100
'confusion with filenames. "*" can be used to include all files.\n' +
101-
"Can be specified multiple times. By default all files will be" +
101+
"Can be specified multiple times. By default all files will be " +
102102
"included.",
103103
type: "string",
104104
alias: "i",
@@ -111,7 +111,7 @@ yargs(process.argv.slice(2))
111111
"Part of filepath names to exclude in the instrumentation. " +
112112
'A tailing "/" should be used to exclude directories and prevent ' +
113113
'confusion with filenames. "*" can be used to exclude all files.\n' +
114-
'Can be specified multiple times. By default, "node_modules/" will' +
114+
'Can be specified multiple times. By default, "node_modules/" will ' +
115115
"be excluded.",
116116
type: "string",
117117
alias: "e",

packages/jest-runner/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"dependencies": {
1919
"@jazzer.js/core": "*",
2020
"cosmiconfig": "^8.1.0",
21-
"jest": "^29.5.0",
2221
"istanbul-reports": "^3.1.5"
2322
},
2423
"devDependencies": {
24+
"jest": "^29.5.0",
2525
"@types/istanbul-reports": "^3.0.1",
2626
"@types/tmp": "^0.2.3",
2727
"tmp": "^0.2.1"

0 commit comments

Comments
 (0)