-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update to Node.js 20 * fix: legacy ssl flag
- Loading branch information
Showing
6 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v14 | ||
v20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
## Install | ||
|
||
Must use node v14 | ||
Must use node v20 or greater | ||
|
||
## Running on Electron | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ A transaction is displayed. | |
|
||
### Prerequisites | ||
|
||
* Install node v14 | ||
* Install node v20 | ||
|
||
### To Install | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,10 @@ | |
"description": "Light wallet for Hathor Network", | ||
"author": "Hathor Labs <[email protected]> (https://hathor.network/)", | ||
"version": "0.27.1-rc4", | ||
"engines": { | ||
"node": ">=20.0.0", | ||
"npm": ">=10.0.0" | ||
}, | ||
"private": true, | ||
"dependencies": { | ||
"@hathor/wallet-lib": "1.0.4", | ||
|
@@ -59,9 +63,9 @@ | |
"scripts": { | ||
"build-css": "sass --no-source-map src/index.scss src/index.css", | ||
"watch-css": "npm run build-css && sass --no-source-map -w src/index.scss src/index.css", | ||
"start-js": "react-scripts start", | ||
"start-js": "react-scripts --openssl-legacy-provider start", | ||
"start": "npm-run-all -p watch-css start-js", | ||
"build-js": "react-scripts build", | ||
"build-js": "react-scripts --openssl-legacy-provider build", | ||
"build": "npm-run-all build-css build-js", | ||
"test": "react-scripts test --env=./tests/env.js", | ||
"e2e": "cypress run", | ||
|