Skip to content

Commit

Permalink
fix internal debug issue with webpack 5.0 and update issue template f…
Browse files Browse the repository at this point in the history
  • Loading branch information
connectdotz committed May 9, 2021
1 parent 94ac9f8 commit 21cb5c4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@

### Environment

1. `node -v`: [fill]
1. `npm -v`: [fill]
1. `npm ls jest` or `npm ls react-scripts` (if you haven’t ejected): [fill]
1. your vscode-jest settings if customized:
- jest.pathToJest? [fill]
- jest.pathToConfig? [fill]
1. `vscode-jest version`: [fill]
2. `node -v`: [fill]
3. `npm -v` or `yarn --version`: [fill]
4. `npm ls jest` or `npm ls react-scripts` (if you haven’t ejected): [fill]
5. your vscode-jest settings if customized:
- jest.jestCommandLine? [fill]
- jest.autoRun? [fill]
- anything else that you think might be relevant? [fill]

1. Operating system: [fill]
6. Operating system: [fill]

### Prerequisite
- are you able to run jest test from command line? [fill]
- how do you run your tests from command line? (for example: `npm run test` or `node_modules/.bin/jest`) [fill]
- are you able to run jest test from the command line? [fill]
- how do you run your tests from the command line? (for example: `npm run test` or `node_modules/.bin/jest`) [fill]

### Steps to Reproduce

Expand Down
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
],
"background": {
"activeOnStart": true,
"beginsPattern": "^Compilation\\s+starting",
"endsPattern": "^Compilation\\s+finished"
"beginsPattern": ".",
"endsPattern": "^webpack.+compiled"
}
}
]
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Please add your own contribution below inside the Master section
Bug-fixes within the same version aren't needed
## Master
* fix internal debug issue with webpack 5.x - @connectdotz
*
-->

### 4.0.0-alpha.5
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@
"clean-out": "rimraf ./out",
"vscode:prepublish": "yarn clean-out && yarn compile",
"compile": "webpack --mode production",
"watch": "webpack --mode development --watch --info-verbosity verbose",
"watch": "webpack --mode development --watch --progress",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" \"*.json\" \"*.js\" ",
"test": "jest",
"watch-test": "yarn test -- --watch",
Expand Down

0 comments on commit 21cb5c4

Please sign in to comment.