Skip to content

Commit

Permalink
Merge branch 'release/1.1.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Aug 14, 2020
2 parents 312c08d + c9fcd89 commit 6290bc7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Annotated webpack 4 config changelog

## 1.1.7 - 2020.08.13
### Fixed
* Modern config only for local dev, [fixing multi-compiler issues](https://github.com/webpack/webpack-dev-server/issues/2355) with HRM

## 1.1.6 - 2020.08.12
### Changed
* Remove `[hash]` from dev config to eliminate potential [memory errors](https://github.com/webpack/webpack-dev-server/issues/438)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "example-project",
"version": "1.1.6",
"version": "1.1.7",
"description": "Example Project brand website",
"keywords": [
"Example",
Expand Down
6 changes: 4 additions & 2 deletions webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ const configurePostcssLoader = () => {
{
loader: 'css-loader',
options: {
url: false,
importLoaders: 2,
sourceMap: true
}
Expand All @@ -75,7 +74,10 @@ const configurePostcssLoader = () => {
{
loader: 'postcss-loader',
options: {
sourceMap: true
sourceMap: true,
config: {
path: path.resolve(__dirname),
}
}
}
]
Expand Down

0 comments on commit 6290bc7

Please sign in to comment.