Skip to content

Commit

Permalink
Release 2.6.0 (#21)
Browse files Browse the repository at this point in the history
* Update to latest w3m changes

* tag 2.6.0
  • Loading branch information
xzilja authored Jul 12, 2023
1 parent 380c305 commit a7fc7d5
Show file tree
Hide file tree
Showing 34 changed files with 548 additions and 1,155 deletions.
12 changes: 10 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
"browser": true
},
"plugins": ["@typescript-eslint"],
"extends": ["eslint:all", "plugin:@typescript-eslint/all", "prettier"],
"extends": [
"eslint:all",
"plugin:@typescript-eslint/stylistic-type-checked",
"plugin:@typescript-eslint/strict-type-checked",
"prettier"
],
"rules": {
"sort-imports": "off",
"one-var": "off",
Expand All @@ -35,6 +40,8 @@
"no-console": ["error", { "allow": ["error", "info"] }],
"no-duplicate-imports": "off",
"no-async-promise-executor": "off",
"no-magic-numbers": "off",
"no-use-before-define": "off",

"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
Expand Down Expand Up @@ -68,6 +75,7 @@
"@typescript-eslint/no-confusing-void-expression": ["error", { "ignoreArrowShorthand": true }],
"@typescript-eslint/member-ordering": "off",
"@typescript-eslint/key-spacing": "off",
"@typescript-eslint/no-import-type-side-effects": "off"
"@typescript-eslint/no-import-type-side-effects": "off",
"@typescript-eslint/prefer-nullish-coalescing": "off"
}
}
19 changes: 9 additions & 10 deletions laboratory/package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
{
"name": "laboratory",
"version": "2.5.9",
"version": "2.6.0",
"private": true,
"scripts": {
"dev": "rm -rf .next; next dev",
"build": "next build"
},
"dependencies": {
"@nextui-org/react": "1.0.0-beta.13",
"@walletconnect/ethereum-provider": "2.8.6",
"@walletconnect/modal": "2.5.9",
"@walletconnect/modal-auth-html": "2.5.9",
"@walletconnect/modal-auth-react": "2.5.9",
"@walletconnect/modal-sign-html": "2.5.9",
"@walletconnect/modal-sign-react": "2.5.9",
"next": "13.4.7",
"@walletconnect/ethereum-provider": "2.9.0",
"@walletconnect/modal": "2.6.0",
"@walletconnect/modal-auth-html": "2.6.0",
"@walletconnect/modal-auth-react": "2.6.0",
"@walletconnect/modal-sign-html": "2.6.0",
"@walletconnect/modal-sign-react": "2.6.0",
"next": "13.4.9",
"react": "18.2.0",
"react-code-blocks": "0.0.9-0",
"react-dom": "18.2.0",
"react-hot-toast": "2.4.1",
"valtio": "1.10.6"
"valtio": "1.10.7"
}
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"projects/modal-sign-react",
"laboratory"
],
"version": "2.5.9",
"version": "2.6.0",
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
Loading

0 comments on commit a7fc7d5

Please sign in to comment.