Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
arch1995 committed Sep 7, 2023
1 parent 94c7a34 commit 75b7a24
Show file tree
Hide file tree
Showing 25 changed files with 6,115 additions and 5,560 deletions.
13 changes: 13 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
require("@rushstack/eslint-patch/modern-module-resolution");

module.exports = {
root: true,
extends: ["@toruslabs/eslint-config-typescript"],
parser: "@typescript-eslint/parser",
ignorePatterns: ["*.config.js", ".eslintrc.js", "*.config.mjs"],
parserOptions: {
sourceType: "module",
ecmaVersion: 2022,
project: "./tsconfig.json",
},
};
11 changes: 0 additions & 11 deletions .eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
strategy:
matrix:
node: ["18.x"]
node: ["20.x"]
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
>=16.18.1
>=18.x
3 changes: 2 additions & 1 deletion .prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# .prettierrc or .prettierrc.yaml
printWidth: 150
singleQuote: false
semi: true
semi: true
trailingComma: es5
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"cSpell.words": ["jrpc", "jsdelivr", "loglevel", "openlogin", "proxied", "solana", "Topup", "toruslabs"]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ entry-point: `index.js`
## Requirements

- This package requires a peer dependency of `@babel/runtime`
- Node 14+
- Node 18+

## License

Expand Down
1 change: 1 addition & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require("@toruslabs/config/babel.config");
4 changes: 0 additions & 4 deletions babel.config.json

This file was deleted.

3 changes: 2 additions & 1 deletion examples/vue-app/vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ const path = require("path");
const { ProvidePlugin } = require("webpack");

module.exports = {
transpileDependencies: true,
transpileDependencies: false,
parallel: !process.env.CI,
devServer: {
port: 3000,
},
Expand Down
Loading

0 comments on commit 75b7a24

Please sign in to comment.