Skip to content

Commit

Permalink
Merge branch 'release/2.4.49' into craft-webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Nov 20, 2021
2 parents 4c26b43 + bd5f2e1 commit ab1ab7c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# nystudio107/craft Change Log

## 2.4.49 - 2021.11.20
### Added
* Use `tty: true` for nicer output in terminal from the PHP & webpack Docker containers

### Changed
* Move Craft Autocomplete to `require-dev`
* `poll` -> `usePolling`

## 2.4.48 - 2021.10.20
### Changed
* Updated the `Makefile` to accommodate the change in Docker to using `-` instead of `_` in container names
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 @@ -35,7 +35,7 @@ module.exports = (type = 'modern', settings) => {
directory: path.resolve(__dirname, settings.contentBase()),
publicPath: '/',
watch: {
poll: settings.poll() | 0,
usePolling: settings.poll() | 0,
ignored: /node_modules/,
},
},
Expand Down
2 changes: 1 addition & 1 deletion cms/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"craftcms/cms": "^3.6.9",
"vlucas/phpdotenv": "^3.4.0",
"yiisoft/yii2-redis": "^2.0.6",
"nystudio107/craft-autocomplete": "^1.0.0",
"nystudio107/craft-imageoptimize": "^1.0.0",
"nystudio107/craft-fastcgicachebust": "^1.0.0",
"nystudio107/craft-minify": "^1.2.5",
Expand All @@ -15,6 +14,7 @@
"nystudio107/craft-twigpack": "^1.2.9"
},
"require-dev": {
"nystudio107/craft-autocomplete": "^1.0.0",
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ services:
expose:
- "9000"
init: true
tty: true
volumes: &php-volumes
- cpresources:/var/www/project/cms/web/cpresources:delegated
- storage:/var/www/project/cms/storage:delegated
Expand All @@ -48,6 +49,7 @@ services:
expose:
- "9000"
init: true
tty: true
volumes:
*php-volumes
# queue - runs queue jobs via php craft queue/listen
Expand All @@ -60,6 +62,7 @@ services:
env_file:
*env
init: true
tty: true
volumes:
*php-volumes
# mariadb - database
Expand Down Expand Up @@ -98,6 +101,7 @@ services:
init: true
ports:
- "8080:8080"
tty: true
volumes:
- ./tsconfig.json:/var/www/project/tsconfig.json:cached
- ./buildchain:/var/www/project/buildchain:cached
Expand Down

0 comments on commit ab1ab7c

Please sign in to comment.