From db64484423cf2e89e47468f61857b8314745e830 Mon Sep 17 00:00:00 2001 From: Dariusz Plawecki Date: Wed, 18 Dec 2024 19:05:38 +0100 Subject: [PATCH] chore: remove legacy provider flag (PROVCON-3003) --- examples/angular/package.json | 6 +++--- examples/react-cra/package.json | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/angular/package.json b/examples/angular/package.json index dd4b3cf9a..149e7248f 100644 --- a/examples/angular/package.json +++ b/examples/angular/package.json @@ -10,9 +10,9 @@ "url": "git+https://github.com/stoplightio/elements-starter-angular.git" }, "scripts": { - "start": "NODE_OPTIONS=--openssl-legacy-provider ng serve --port 4200", - "build": "NODE_OPTIONS=--openssl-legacy-provider ng build --configuration production", - "serve": "NODE_OPTIONS=--openssl-legacy-provider angular-http-server --path ./dist/angular -p 4200" + "start": "ng serve --port 4200", + "build": "ng build --configuration production", + "serve": "angular-http-server --path ./dist/angular -p 4200" }, "bugs": { "url": "https://github.com/stoplightio/elements-starter-angular/issues" diff --git a/examples/react-cra/package.json b/examples/react-cra/package.json index c70057bb7..e3311afac 100644 --- a/examples/react-cra/package.json +++ b/examples/react-cra/package.json @@ -5,9 +5,9 @@ "author": "Stoplight ", "license": "Unlicense", "scripts": { - "start": "NODE_OPTIONS=--openssl-legacy-provider PORT=4200 react-scripts start", - "build": "NODE_OPTIONS=--openssl-legacy-provider react-scripts build", - "serve": "NODE_OPTIONS=--openssl-legacy-provider serve -s -l 4200 build" + "start": "PORT=4200 react-scripts start", + "build": "react-scripts build", + "serve": "serve -s -l 4200 build" }, "dependencies": { "@stoplight/elements": "^7.0.0",