Skip to content

Commit

Permalink
Merge branch 'release/2.4.13' into craft-webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Dec 22, 2020
2 parents e4c01f5 + 569c1bb commit db49baa
Show file tree
Hide file tree
Showing 14 changed files with 11 additions and 226 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# nystudio107/craft Change Log

## 2.4.13 - 2020.12.21
### Changed
* Refactored `output.path` to `app.config.js`
* Remove unused base Docker configs
* Use PHP 7.4

## 2.4.12 - 2020.12.17
### Added
* Added some useful PostCSS plugins
Expand Down
1 change: 0 additions & 1 deletion buildchain/webpack-configs/app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ module.exports = (type = 'modern', settings) => {
name: pkg.name,
output: {
path: path.resolve(__dirname, settings.paths.dist),
publicPath: settings.urls.publicPath()
},
resolve: {
alias: settings.alias,
Expand Down
1 change: 0 additions & 1 deletion buildchain/webpack-configs/build.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ module.exports = (type = 'modern', settings) => {
entry: {},
mode: 'production',
output: {
path: path.resolve(__dirname, settings.paths.dist),
publicPath: settings.urls.publicPath()
},
resolve: {
Expand Down
2 changes: 2 additions & 0 deletions buildchain/webpack-configs/production.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ module.exports = (type = 'modern', settings) => {
},
output: {
filename: path.join('./js', '[name]-legacy.[contenthash].js'),
publicPath: settings.urls.publicPath(),
},
plugins: [
new MiniCssExtractPlugin({
Expand All @@ -84,6 +85,7 @@ module.exports = (type = 'modern', settings) => {
},
output: {
filename: path.join('./js', '[name].[contenthash].js'),
publicPath: settings.urls.publicPath(),
},
},
}
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.12",
"version": "2.4.13",
"keywords": [
"craft",
"cms",
Expand Down
53 changes: 0 additions & 53 deletions docker-config/node-dev-base/Dockerfile

This file was deleted.

79 changes: 0 additions & 79 deletions docker-config/php-dev-base/Dockerfile

This file was deleted.

6 changes: 0 additions & 6 deletions docker-config/php-dev-base/xdebug.ini

This file was deleted.

4 changes: 0 additions & 4 deletions docker-config/php-dev-base/zzz-docker.conf

This file was deleted.

2 changes: 1 addition & 1 deletion docker-config/php-dev-craft/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nystudio107/php-dev-base
FROM nystudio107/php-dev-base:7.4

# Install packages
RUN apt-get update \
Expand Down
74 changes: 0 additions & 74 deletions docker-config/php-prod-base/Dockerfile

This file was deleted.

4 changes: 0 additions & 4 deletions docker-config/php-prod-base/zzz-docker.conf

This file was deleted.

2 changes: 1 addition & 1 deletion docker-config/php-prod-craft/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nystudio107/php-prod-base
FROM nystudio107/php-prod-base:7.4

# Install packages
RUN apt-get update \
Expand Down
1 change: 0 additions & 1 deletion docker-config/postgres/Dockerfile

This file was deleted.

0 comments on commit db49baa

Please sign in to comment.