Skip to content

Commit

Permalink
Merge branch 'release/2.4.36' into craft-webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed May 9, 2021
2 parents 6587588 + ebe1e08 commit 4ba047f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# nystudio107/craft Change Log

## 2.4.36 - 2020.05.09
### Changed
* Silence errors from the root `post-create-project-cmd` script

### Fixed
* Fixed a breaking change of `dev` to `devMiddleware` in `webpack-dev-server` `^4.0.0-beta.3`

## 2.4.35 - 2021.04.27
### Changed
* Delegate all of `storage` & `cpresources` volumes, let the container own it
Expand Down
2 changes: 1 addition & 1 deletion buildchain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"webpack": "^5.13.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^4.0.0-beta.1",
"webpack-dev-server": "^4.0.0-beta.3",
"webpack-manifest-plugin": "^3.0.0",
"webpack-merge": "^5.7.0",
"workbox-webpack-plugin": "^6.0.0"
Expand Down
2 changes: 1 addition & 1 deletion buildchain/webpack-configs/dev-server.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = (type = 'modern', settings) => {
overlay: true,
progress: false,
},
dev: {
devMiddleware: {
publicPath: '/',
},
firewall: false,
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
"post-create-project-cmd": [
"@php -r \"copy('./cms/example.env', './cms/.env');\"",
"@php -r \"copy('./scripts/example.env.sh', './scripts/.env.sh');\"",
"@php -r \"unlink('composer.json');\"",
"@php -r \"unlink('composer.lock');\"",
"@php -r \"unlink('LICENSE.md');\"",
"@php -r \"unlink('README.md');\""
"@php -r \"@unlink('composer.json');\"",
"@php -r \"@unlink('composer.lock');\"",
"@php -r \"@unlink('LICENSE.md');\"",
"@php -r \"@unlink('README.md');\""
]
}
}

0 comments on commit 4ba047f

Please sign in to comment.