Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .eslintignore

This file was deleted.

293 changes: 0 additions & 293 deletions .eslintrc.js

This file was deleted.

1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ script: "npm run lint && npm run test && npm run test-build"
node_js:
- node
- lts/*
- 12
- 10
branches:
only:
- main
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Webpack Helpers

A [Human Made](https://humanmade.com) project. [![Build Status](https://travis-ci.com/humanmade/webpack-helpers.svg?branch=main)](https://travis-ci.com/humanmade/webpack-helpers)
A [Human Made](https://humanmade.com) project. ![Build Status](https://app.travis-ci.com/humanmade/webpack-helpers.svg?token=xNUfWUZqcGkpUy3iiQyu&branch=main)

## Background

Expand All @@ -12,6 +12,16 @@ Visit [humanmade.github.io/webpack-helpers](https://humanmade.github.io/webpack-

Visit the [`docs/`](./docs) folder to view or modify the content used to generate this documentation site.

## Requirements

- Node.js >= 22.0.0

This project includes an `.nvmrc` file specifying Node.js 22. If you use nvm, you can run:

```bash
nvm use
```

## What's In The Box

### [Opinionated Configuration Presets](https://humanmade.github.io/webpack-helpers/modules/presets)
Expand Down
47 changes: 44 additions & 3 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,50 @@ nav_order: 10

# Changelog

## Next

- Include the `contenthash` in generated CSS filenames. [#204](https://github.com/humanmade/webpack-helpers/pull/204)
## v1.0.0-alpha

### Added

- Full Webpack 5 support with modern optimizations and performance improvements
- ESLint 9+ support with flat configuration format (`eslint.config.js`)
- Modern `eslint-webpack-plugin` replacing deprecated `eslint-loader`
- Enhanced TypeScript support for `.ts` and `.tsx` files
- Updated peer dependencies to latest stable versions
- Improved build performance with Webpack 5's enhanced tree shaking
- Module federation capabilities support

### Changed

- **BREAKING**: Upgraded from Webpack 4 to Webpack 5
- **BREAKING**: Updated ESLint support to use ESLint 9+ flat configuration format
- **BREAKING**: Replaced deprecated `eslint-loader` with `eslint-webpack-plugin`
- **BREAKING**: Updated minimum Node.js requirement to align with Webpack 5
- Updated all bundled dependencies to latest stable versions
- Improved error handling and debugging capabilities
- Enhanced development server performance

### Removed

- Support for legacy `.eslintrc.*` configuration files (use `eslint.config.js` instead)
- Webpack 4 compatibility and related legacy code
- `eslint-loader` dependency (replaced with `eslint-webpack-plugin`)
- Outdated peer dependency constraints

### Migration Guide

- Update your `package.json` to use `webpack@5`, `webpack-cli@5`, and `webpack-dev-server@5`
- If using ESLint, migrate from `.eslintrc.*` files to `eslint.config.js` using the flat configuration format
- Review and update any custom webpack configurations to ensure Webpack 5 compatibility
- Update Node.js to a supported version if needed

## v0.12.0

* Include contenthash in generated CSS filenames by @kadamwhite in https://github.com/humanmade/webpack-helpers/pull/204
* Use Just the HM Docs theme by @joeleenk in https://github.com/humanmade/webpack-helpers/pull/210
* Add workflow to deploy GH pages by @joeleenk in https://github.com/humanmade/webpack-helpers/pull/212
* Update to Jekyll 4, inherit from theme by @joeleenk in https://github.com/humanmade/webpack-helpers/pull/213
* Update getting-started.md by @pamprn09 in https://github.com/humanmade/webpack-helpers/pull/216
* Update externals for WP 6.2 and add snapshot update command by @Sephsekla in https://github.com/humanmade/webpack-helpers/pull/217

## v0.11.1

Expand Down
Loading