Skip to content

Commit 338eda2

Browse files
Merge pull request #175 from MetaMask/chore-update-deps
chore: update deps
2 parents 69d8446 + cfb3d4b commit 338eda2

30 files changed

+4636
-7554
lines changed

.github/CODEOWNERS

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Lines starting with '#' are comments.
2+
#
3+
# GUIDELINES:
4+
# Each line is a file pattern followed by one or more owners.
5+
# Owners bear a responsibility to the organization and the users of this
6+
# application. Repository administrators have the ability to merge pull
7+
# requests that have not yet received the requisite reviews as outlined
8+
# in this file. Do not force merge any PR without confidence that it
9+
# follows all policies or without full understanding of the impact of
10+
# those changes on build, release and publishing outcomes.
11+
#
12+
# The CODEOWNERS file constitutes an agreement amongst organisation
13+
# admins and maintainers to restrict approval capabilities to a subset
14+
# of contributors. Modifications to this file result in a modification of
15+
# that agreement and can only be approved by those with the knowledge
16+
# and responsibility to publish libraries under the MetaMask name.
17+
18+
# Fallback for all other files
19+
* @MetaMask/web3auth-admins
20+
21+
# Product code
22+
src/ @MetaMask/web3auth-product
23+
test/ @MetaMask/web3auth-product
24+
25+
# Most restrictive — last match wins
26+
.github/CODEOWNERS @MetaMask/web3auth-admins

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
>=18.x
1+
>=24.x

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ This module is distributed in 3 formats
3232

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

3736
By default, the appropriate format is used for your specified usecase
3837
You can use a different format (if you know what you're doing eg. node) by referencing the correct file

eslint.config.mjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
import toruslabsTypescript from "@toruslabs/eslint-config-typescript";
22

33
export default [
4+
{
5+
ignores: ["dist/**", "babel.config.js"],
6+
},
47
...toruslabsTypescript,
58
{
69
rules: {
710
"no-unused-vars": "off",
811
"no-implicit-any": "off",
912
},
1013
},
14+
{
15+
files: ["test/**"],
16+
rules: {
17+
"import/no-extraneous-dependencies": "off",
18+
},
19+
},
1120
];

0 commit comments

Comments
 (0)