Skip to content
Merged
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
22 changes: 0 additions & 22 deletions .eslintignore

This file was deleted.

13 changes: 0 additions & 13 deletions .eslintrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: run tests
strategy:
matrix:
node: ["20.x"]
node: ["22.x"]
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ This library handles these checks and allows you to query the Torus network easi

This module is distributed in 3 formats

- `esm` build `dist/torusUtils.esm.js` in es6 format
- `commonjs` build `dist/torusUtils.cjs.js` in es5 format
- `lib.esm` build `dist/lib.esm/index.js` in es6 format
- `lib.cjs` build `dist/lib.cjs/index.js` in es5 format
- `umd` build `dist/torusUtils.umd.min.js` in es5 format without polyfilling corejs minified

By default, the appropriate format is used for your specified usecase
Expand Down Expand Up @@ -106,4 +106,4 @@ fetchNodeDetails
## Requirements

- This package requires a peer dependency of `@babel/runtime`
- Node 16+
- Node 20+
11 changes: 11 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import toruslabsTypescript from "@toruslabs/eslint-config-typescript";

export default [
...toruslabsTypescript,
{
rules: {
"no-unused-vars": "off",
"no-implicit-any": "off",
},
},
];
Loading
Loading