-
-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configurations cleanup.
- Loading branch information
Showing
8 changed files
with
59 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,28 @@ | ||
# Change log | ||
|
||
## [5.0.1](https://github.com/WeAreAthlon/frontend-webpack-boilerplate/releases/tag/v5.0.1) | ||
### 28/10/2020 | ||
|
||
### Updates | ||
|
||
* Fix `.travis.yml` configuration warnings. | ||
* Fix varous spelling errors. | ||
* Development wepback configuration cleanup. | ||
|
||
### Packages Version Updates | ||
|
||
* `[email protected]` change log can be found on the official [release notes](https://github.com/webpack-contrib/file-loader/releases/tag/v6.2.0). | ||
* `[email protected]` change log can be found on the official [release notes](https://github.com/webpack-contrib/mini-css-extract-plugin/releases/tag/v1.2.1). | ||
* `[email protected]` change log can be found on the official [release notes](https://github.com/webpack-contrib/terser-webpack-plugin/releases/tag/v5.0.3). | ||
* `[email protected]` change log can be found on the official [release notes](https://github.com/webpack/webpack/releases/tag/v5.3.0). | ||
|
||
## [5.0.0](https://github.com/WeAreAthlon/frontend-webpack-boilerplate/releases/tag/v5.0.0) | ||
### 27/10/2020 | ||
|
||
### New Features | ||
|
||
* Configurable **browsers versions support**. It uses [`browserslist`](https://github.com/browserslist/browserslist#full-list) - just specify the browsers you want to support in the `package.json` file for `browserslist`. | ||
Configuration per **environment** | ||
* Configuration per **environment** | ||
* `development` - [`sourcemaps`](https://webpack.js.org/configuration/devtool/), [`browser synced developmentment server`](https://webpack.js.org/configuration/dev-server/) | ||
* `production` - [`minification`](https://webpack.js.org/plugins/terser-webpack-plugin/), [`sourcemaps`](https://webpack.js.org/configuration/devtool/) | ||
* Automatic building of all template HTML files placed under `src/templates/`, no need to manually configure each file anymore. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"author": "WeAreAthlon <[email protected]> (https://www.weareathlon.com)", | ||
"name": "@weareathlon/frontend-webpack-boilerplate", | ||
"version": "5.0.0", | ||
"version": "5.0.1", | ||
"description": "Starter project template boilerplate based on Webpack with SASS/PostCSS and babel ES6/7 support.", | ||
"homepage": "https://github.com/WeAreAthlon/frontend-webpack-boilerplate#readme", | ||
"browserslist": [ | ||
|
@@ -36,18 +36,18 @@ | |
"eslint-plugin-jsx-a11y": "^6.4.1", | ||
"eslint-plugin-react": "^7.21.5", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"file-loader": "^6.1.1", | ||
"file-loader": "^6.2.0", | ||
"html-webpack-plugin": "^4.5.0", | ||
"imagemin-webpack-plugin": "^2.4.2", | ||
"mini-css-extract-plugin": "^1.2.0", | ||
"mini-css-extract-plugin": "^1.2.1", | ||
"postcss": "^8.1.4", | ||
"postcss-loader": "^4.0.4", | ||
"sass": "^1.27.0", | ||
"sass-lint": "^1.13.1", | ||
"sass-loader": "^10.0.4", | ||
"terser-webpack-plugin": "^5.0.1", | ||
"terser-webpack-plugin": "^5.0.3", | ||
"url-loader": "^4.1.1", | ||
"webpack": "^5.2.0", | ||
"webpack": "^5.3.0", | ||
"webpack-cli": "^4.1.0", | ||
"webpack-dev-server": "^3.11.0", | ||
"webpack-merge": "^5.2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
const demo = () => 'Frotned Webpack Boilerplate v5.0.0 - SASS, ES6/7, browser sync, source code listing and more.'; | ||
const demo = () => 'Webpack Boilerplate v5.0.1 - SASS/PostCSS, ES6/7, browser sync, source code listing and more.'; | ||
|
||
// eslint-disable-next-line no-console | ||
console.log(demo()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters