Skip to content

Commit

Permalink
remove --openssl-legacy-provider flag (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt authored Jun 28, 2022
1 parent 5f3833b commit c6014df
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions modules/demo/client-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
],
"bin": "index.js",
"scripts": {
"dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider next dev",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider next build",
"start": "cross-env NODE_OPTIONS=--openssl-legacy-provider next build && next start"
"dev": "next dev",
"build": "next build",
"start": "next build && next start"
},
"dependencies": {
"@deck.gl/core": "8.6.6",
Expand Down
6 changes: 3 additions & 3 deletions modules/demo/sql/sql-cluster-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
],
"bin": "index.js",
"scripts": {
"dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development node index.js",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider next build",
"start": "cross-env NODE_OPTIONS=--openssl-legacy-provider next build && NODE_ENV=production node index.js"
"dev": "NODE_ENV=development node index.js",
"build": "next build",
"start": "next build && NODE_ENV=production node index.js"
},
"dependencies": {
"@material-ui/core": "4.12.3",
Expand Down
6 changes: 3 additions & 3 deletions modules/demo/viz-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
],
"bin": "index.js",
"scripts": {
"dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider next dev",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider next build",
"start": "cross-env NODE_OPTIONS=--openssl-legacy-provider next build && next start"
"dev": "next dev",
"build": "next build",
"start": "next build && next start"
},
"dependencies": {
"@deck.gl/core": "8.6.6",
Expand Down

0 comments on commit c6014df

Please sign in to comment.