Skip to content

Commit

Permalink
Merge branch 'release/2.4.11' into craft-webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Dec 6, 2020
2 parents bb6e2f0 + a5e99d5 commit 43c5903
Show file tree
Hide file tree
Showing 4 changed files with 1,267 additions and 872 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# nystudio107/craft Change Log

## 2.4.11 - 2020.12.06
### Changed
* Ensure poll is always an integer
* Updated seed db

## 2.4.10 - 2020.12.05
### Changed
* Updated to latest buildchain semver deps
Expand Down
5 changes: 4 additions & 1 deletion buildchain/webpack-configs/dev-server.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = (type = 'modern', settings) => {
directory: path.resolve(__dirname, settings.contentBase()),
publicPath: '/',
watch: {
poll: !!parseInt(settings.poll()),
poll: settings.poll() | 0,
ignored: /node_modules/,
},
},
Expand All @@ -55,6 +55,9 @@ module.exports = (type = 'modern', settings) => {
exclude: /\.(pcss|css)($|\?)/i,
}),
],
watchOptions: {
poll: settings.poll() | 0,
},
});
// configs
const configs = {
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "craftcms/craft",
"description": "nystudio107 Craft 3.4 CMS scaffolding project",
"version": "2.4.10",
"version": "2.4.11",
"keywords": [
"craft",
"cms",
Expand Down
Loading

0 comments on commit 43c5903

Please sign in to comment.