From 6a99b73bdbf52f94cc4d6fa3c11f89d802f4fbe8 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Sun, 22 Dec 2024 15:46:46 +0100 Subject: [PATCH] Allow `webpack-cli` 6.x Close #532 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28659ac8..25d34c1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ _next_ branch is for v8 changes ## [Unreleased] Changes since the last non-beta release. +### Added + +- Allow `webpack-cli` v6. [PR 533](https://github.com/shakacode/shakapacker/pull/533) by [tagliala](https://github.com/tagliala). + ### Changed - Changed internal `require`s to `require_relative` to make code less dependent on the load path. [PR 516](https://github.com/shakacode/shakapacker/pull/516) by [tagliala](https://github.com/tagliala). - Allow configuring webpack from a Typescript file (`config/webpack/webpack.config.ts`). [PR 524](https://github.com/shakacode/shakapacker/pull/524) by [jdelStrother](https://github.com/jdelStrother). diff --git a/package.json b/package.json index 94995b81..84b48ccb 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ "terser-webpack-plugin": "^5.3.1", "webpack": "^5.72.0", "webpack-assets-manifest": "^5.0.6", - "webpack-cli": "^4.9.2 || ^5.0.0", + "webpack-cli": "^4.9.2 || ^5.0.0 || ^6.0.0", "webpack-dev-server": "^4.9.0 || ^5.0.0", "webpack-merge": "^5.8.0 || ^6.0.0" },