From c7e0a830b39a0ad1088f3da8b0aa38d8278bb258 Mon Sep 17 00:00:00 2001 From: Zak Burke Date: Fri, 1 Apr 2022 13:18:15 -0400 Subject: [PATCH] STCLI-195 pin webpack to ~5.68.0 (#284) Oy, the hits just keep coming. It seems that `5.69.0` and `5.70.0` don't play nice with `moment` and barf thousands of lines of warnings into the log when running tests, but `5.69.1` isn't compatible with `karma-webpack` which prevents tests from running _at all_. Yuck. Refs STCLI-195 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08c2eaa..fd9ce3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change history for stripes-cli +## 2.5.2 IN PROGRESS + +* Pin `webpack` to `~5.68.0` due to `moment` and `karma-webpack` trouble. Refs STCLI-195. + ## [2.5.1](https://github.com/folio-org/stripes-cli/tree/v2.5.1) (2022-03-25) * Avoid sabotaged `isBinaryFile`. Fixes STCLI-193. diff --git a/package.json b/package.json index 9e83d3c..45f371e 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,7 @@ "simple-git": "^1.89.0", "supports-color": "^4.5.0", "update-notifier": "^2.3.0", - "webpack": "^5.58.1", + "webpack": "~5.68.0", "webpack-bundle-analyzer": "^4.4.2", "yargs": "^13.1.0" },