From 8adb8a5eaf559733a4a2a8f95eeaab6076387fc0 Mon Sep 17 00:00:00 2001 From: David Cook Date: Fri, 3 Feb 2023 15:20:36 +1100 Subject: [PATCH] Make webpack-cli a dev-only dependency We shouldn't need this in production. According to the [readme](https://www.npmjs.com/package/webpack-cli) it's only a dev dependency. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1f85a44af1..79620680d0 100644 --- a/package.json +++ b/package.json @@ -38,8 +38,7 @@ "stimulus-flatpickr": "^1.4.0", "stimulus_reflex": "3.5.0-pre9", "tom-select": "^2.0.0", - "webpack": "~4", - "webpack-cli": "~3" + "webpack": "~4" }, "devDependencies": { "husky": "^8.0.0", @@ -51,6 +50,7 @@ "karma-jasmine": "~0.3.8", "prettier": "2.7.1", "pretty-quick": "^3.1.3", + "webpack-cli": "~3", "webpack-dev-server": "~3" } }