Skip to content

Commit

Permalink
Bug/display none should not show modules (#69)
Browse files Browse the repository at this point in the history
* display none should ignore modules in webpack 4

* version is updated to 4.0.3, documentation is updated

* fixing setup-samples in package.json
deleting webpack-test.webpack.result.md from webpack-4 sample

* properly delete webpack 4 test markdown file

* ignore hash check in webpack 4 test
  • Loading branch information
jkanczler authored Mar 28, 2018
1 parent 22eab79 commit 60ef4b5
Show file tree
Hide file tree
Showing 24 changed files with 9,372 additions and 6 deletions.
2 changes: 2 additions & 0 deletions DETAILS.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ stats.js Location | true | ./node_modules/webpack/lib/Stats.js | Location of the

## <a id="release-notes"></a>Release Notes

* 4.0.3 (29/03/2018)
* The `--display "none"` flag is working properly with webpack 4.
* 4.0.2 (27/01/2018)
* Documentation is updated.
* 4.0.1 (27/01/2018)
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
next-version: 4.0.2
next-version: 4.0.3
assembly-informational-format: '{SemVer}'
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ stats.js Location | true | ./node_modules/webpack/lib/Stats.js | Location of the

## <a id="release-notes"></a>Release Notes

* 4.0.3 (29/03/2018)
* The `--display "none"` flag is working properly with webpack 4.
* 4.0.2 (27/01/2018)
* Documentation is updated.
* 4.0.1 (27/01/2018)
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wepback-vsts-extension",
"version": "4.0.2",
"version": "4.0.3",
"description": "webpack Visual Studio Team System (VSTS) Extension",
"main": "index.js",
"scripts": {
Expand All @@ -10,7 +10,8 @@
"setup-sample-webpack3": "cd samples/webpack-3 && yarn",
"setup-sample-webpack3-with-issues": "cd samples/webpack-3-with-issues && yarn",
"setup-sample-webpack-ts-config": "cd samples/webpack-ts-config && yarn",
"setup-samples": "yarn run setup-sample-one && yarn run setup-sample-two && yarn run setup-sample-webpack2 && yarn run setup-sample-webpack3 && yarn run setup-sample-webpack3-with-issues && yarn run setup-sample-webpack-ts-config",
"setup-sample-webpack-4": "cd samples/webpack-4 && yarn",
"setup-samples": "yarn run setup-sample-one && yarn run setup-sample-two && yarn run setup-sample-webpack2 && yarn run setup-sample-webpack3 && yarn run setup-sample-webpack3-with-issues && yarn run setup-sample-webpack-ts-config && yarn run setup-sample-webpack-4",
"setup": "yarn run setup-samples && yarn && cd tasks/webpack-build-task && yarn",
"tslint": "tslint tasks/webpack-build-task/**/*.ts -e tasks/webpack-build-task/node_modules/**/*",
"build-without-setup": "tsc && yarn run tslint",
Expand Down
Loading

0 comments on commit 60ef4b5

Please sign in to comment.