Skip to content

Commit 69fea04

Browse files
committed
update version everywhere else
1 parent 0ee41a5 commit 69fea04

File tree

3 files changed

+23
-19
lines changed

3 files changed

+23
-19
lines changed

.github/workflows/nodejs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [18.12]
18+
node-version: [20.x]
1919

2020
steps:
2121
- uses: actions/checkout@v4
@@ -48,7 +48,7 @@ jobs:
4848

4949
strategy:
5050
matrix:
51-
node-version: [18.12]
51+
node-version: [20.x]
5252

5353
steps:
5454
- uses: actions/checkout@v4
@@ -88,7 +88,7 @@ jobs:
8888

8989
strategy:
9090
matrix:
91-
node-version: [18.12]
91+
node-version: [20.x]
9292

9393
steps:
9494
- uses: actions/checkout@v4
@@ -121,7 +121,7 @@ jobs:
121121

122122
strategy:
123123
matrix:
124-
node-version: [18.12]
124+
node-version: [20.x]
125125

126126
steps:
127127
- uses: actions/checkout@v4

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.12.1
1+
v20.11.1

README.md

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,22 @@ This project uses [Vite](https://vitejs.dev/). You can find information about ho
88

99
### Install Node and NPM
1010

11-
The project requires node@18.12.x. Follow installation instructions on [nodejs.org](https://nodejs.org/en/).
11+
The project requires node@20. Follow installation instructions on [nodejs.org](https://nodejs.org/en/).
1212

1313
(Recommended) Install using [nvm](https://github.com/nvm-sh/nvm).
1414

1515
Make sure to use npm version 8+ by running `npm install -g npm@latest` after you install Node.
1616

1717
### Google BigQuery Setup
18+
1819
This setup is required for the Tokens page of the explorer to function:
1920

2021
1. [Select or create a Cloud Platform project][projects].
2122
1. [Enable the Google BigQuery API][enable_api].
2223
1. [Set up authentication with a service account][auth]
2324

2425
Once you have completed these steps and generated the JSON key file, you must populate the following environment variables in the .env file with their corresponding values from the JSON key file:
26+
2527
```
2628
GOOGLE_APP_PROJECT_ID=your-project-id
2729
GOOGLE_APP_PRIVATE_KEY=-----BEGIN PRIVATE KEY-----\n...
@@ -34,11 +36,12 @@ GOOGLE_APP_CLIENT_EMAIL=your-client-email
3436

3537
## Install, compile, and run
3638

37-
* `npm install` then
38-
* `npm start` for development mode, or
39-
* `npm run build` then `npm run prod-server` for production mode
39+
- `npm install` then
40+
- `npm start` for development mode, or
41+
- `npm run build` then `npm run prod-server` for production mode
4042

4143
### Installing on Apple Silicon
44+
4245
Since `canvas` does not provide pre-built binaries for Apple chips during `npm install` it will try to compile it manually. To get this to succeed you need to install several dependencies by following the instructions [here](https://github.com/Automattic/node-canvas#compiling).
4346

4447
## Running on Parallel Networks
@@ -57,9 +60,9 @@ Since `canvas` does not provide pre-built binaries for Apple chips during `npm i
5760

5861
### Run unit tests
5962

60-
* Run tests in watch mode `npm test`
61-
* Run test to produce coverage `npm run test:coverage`
62-
* To open coverage HTML report in app root do `open coverage/index.html`
63+
- Run tests in watch mode `npm test`
64+
- Run test to produce coverage `npm run test:coverage`
65+
- To open coverage HTML report in app root do `open coverage/index.html`
6366

6467
### Debugging Unit Tests in Chrome
6568

@@ -84,20 +87,21 @@ Since `canvas` does not provide pre-built binaries for Apple chips during `npm i
8487
1. US English (default)
8588
1. Spanish
8689
1. French
87-
1. Japanese
88-
1. Korean
90+
1. Japanese
91+
1. Korean
8992

9093
When updating translation entires or adding new languages consult the guide [Translating](./docs/translating.md).
9194

9295
## Additional Documentation
93-
* [How to define transactions](./src/containers/shared/components/Transaction/README.md)
94-
* [Routing](./docs/routing.md)
96+
97+
- [How to define transactions](./src/containers/shared/components/Transaction/README.md)
98+
- [Routing](./docs/routing.md)
9599

96100
## React Documentation
97101

98-
* Latest news in [react blog](https://reactjs.org/blog)
99-
* [React documentation](https://reactjs.org/docs)
100-
* [How to think in react](https://reactjs.org/docs/thinking-in-react.html) and break down components
102+
- Latest news in [react blog](https://reactjs.org/blog)
103+
- [React documentation](https://reactjs.org/docs)
104+
- [How to think in react](https://reactjs.org/docs/thinking-in-react.html) and break down components
101105

102106
[enable_api]: https://console.cloud.google.com/flows/enableapi?apiid=bigquery.googleapis.com
103107
[projects]: https://console.cloud.google.com/project

0 commit comments

Comments
 (0)