Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update deps #416

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/Basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Use Node.js 18.16.1
- name: Use Node.js 20.9.0
uses: actions/setup-node@v3
with:
node-version: 18.16.1
node-version: 20.9.0
- name: Install dependencies
run: yarn install
- run: yarn build
- run: yarn prettier
- run: yarn unimported
run: npm install
- run: npm run build
- run: npm run prettier
- run: npm run unimported
# - run: yarn test
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.16.1
20.9.0
11 changes: 5 additions & 6 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,18 @@ The following are the tools you'll need:

- [Git](https://git-scm.com/)
- [NodeJS](https://nodejs.org/en/)
- [Yarn](https://yarnpkg.com/)
- wasm32 target

```bash
$ yarn
$ npm install

$ yarn dev
$ npm run dev

# for running a close to prod version
$ yarn start
$ npm start

# for building a production package
$ yarn build
$ npm run build
```

- An IDE. We recommend either [Intellij Idea](https://www.jetbrains.com/idea/download/) or [VS Code](https://code.visualstudio.com/download),
Expand Down Expand Up @@ -68,7 +67,7 @@ The following are the steps to fork the repository to your GitHub account and cl
you are trying to achieve: - Please use [conventional commits](https://conventionalcommits.org) syntax. - Please make sure to use clear commit messages. - Please favor small commits instead of large ones.
6. Make sure to visually test your features or additions locally before deploying.
7. Make sure your code compiles, so that it can be deployed on Netlify
- `yarn build`
- `npm run build`
8. Test your code. We strive for high quality code, so any changes you introduce ideally will be tested. We know testing frontends
can be difficult at first! If you are not sure how to create tests, please refer to existing ones or just ask us on our
[discord](https://discordapp.com/channels/908044702794801233/987301947440767006). Please note that **Untested code will be rejected**. After we have an adequate test suite in place such that contributors can easily write tests we will ask for tests on all new features. - `cargo test`
Expand Down
248 changes: 0 additions & 248 deletions hooks/useTransaction.tsx

This file was deleted.

3 changes: 3 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ const config = {
ignoreBuildErrors: true,
},
output: "standalone",
experimental: {
webpackBuildWorker: true
},
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
Expand Down
Loading
Loading