From 351156bf8daf2ec8572ade8f790f1ac5bedeec40 Mon Sep 17 00:00:00 2001 From: w1kman Date: Thu, 12 Oct 2023 08:12:25 +0200 Subject: [PATCH] Remove node option `--openssl-legacy-provider` as it is no longer needed. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4079031..1b678cf 100644 --- a/package.json +++ b/package.json @@ -61,8 +61,8 @@ "webpack-cli": "^5.1.4" }, "scripts": { - "bundle": "NODE_OPTIONS=--openssl-legacy-provider ./node_modules/.bin/webpack --config webpack.config.js", - "analyze": "NODE_OPTIONS=--openssl-legacy-provider BUNDLE_ANALYSIS=\"reports/commit_$(git rev-parse --short HEAD).html\" ./node_modules/.bin/webpack --config webpack.config.js", + "bundle": "./node_modules/.bin/webpack --config webpack.config.js", + "analyze": "BUNDLE_ANALYSIS=\"reports/commit_$(git rev-parse --short HEAD).html\" ./node_modules/.bin/webpack --config webpack.config.js", "lint": "eslint .", "test": "npm-run-all test-unit test-int test-e2e", "test-int": "cross-env NODE_PATH=src:test ava test/int/**/*.test.js",