Skip to content

Commit

Permalink
fix: lock defly and pera connect dependencies, so they're algosdk@2 c…
Browse files Browse the repository at this point in the history
…ompatible (#44)

* fix: lock defly and pera connect dependencies, so they're algosdk@2 compatible
* chore: update vscode setting
  • Loading branch information
neilcampbell authored Jan 29, 2025
1 parent f34f4ee commit dee48a9
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": true
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"dotenv.enableAutocloaking": false,
"jest.autoRun": {
Expand Down
4 changes: 2 additions & 2 deletions examples/cloud_provider/production_react_netlify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^7.0.0",
"@blockshake/defly-connect": "^1.1.6",
"@blockshake/defly-connect": "1.1.6",
"@daffiwallet/connect": "^1.0.3",
"@perawallet/connect": "^1.3.4",
"@perawallet/connect": "1.3.5",
"@txnlab/use-wallet": "^2.8.2",
"algosdk": ">=2.9.0 <3.0",
"daisyui": "^4.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": true
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"dotenv.enableAutocloaking": false,
"jest.autoRun": {
Expand Down
4 changes: 2 additions & 2 deletions examples/cloud_provider/production_react_vercel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^7.0.0",
"@blockshake/defly-connect": "^1.1.6",
"@blockshake/defly-connect": "1.1.6",
"@daffiwallet/connect": "^1.0.3",
"@perawallet/connect": "^1.3.4",
"@perawallet/connect": "1.3.5",
"@txnlab/use-wallet": "^2.8.2",
"algosdk": ">=2.9.0 <3.0",
"daisyui": "^4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/production_react/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": true
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"dotenv.enableAutocloaking": false,
"jest.autoRun": {
Expand Down
4 changes: 2 additions & 2 deletions examples/production_react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^7.0.0",
"@blockshake/defly-connect": "^1.1.6",
"@blockshake/defly-connect": "1.1.6",
"@daffiwallet/connect": "^1.0.3",
"@perawallet/connect": "^1.3.4",
"@perawallet/connect": "1.3.5",
"@txnlab/use-wallet": "^2.8.2",
"algosdk": ">=2.9.0 <3.0",
"daisyui": "^4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/starter_react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^7.0.0",
"@blockshake/defly-connect": "^1.1.6",
"@blockshake/defly-connect": "1.1.6",
"@daffiwallet/connect": "^1.0.3",
"@perawallet/connect": "^1.3.4",
"@perawallet/connect": "1.3.5",
"@txnlab/use-wallet": "^2.8.2",
"algosdk": ">=2.9.0 <3.0",
"notistack": "^3.0.1",
Expand Down
4 changes: 2 additions & 2 deletions template_content/package.json.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^7.0.0",
"@blockshake/defly-connect": "^1.1.6",
"@blockshake/defly-connect": "1.1.6",
"@daffiwallet/connect": "^1.0.3",
"@perawallet/connect": "^1.3.4",
"@perawallet/connect": "1.3.5",
"@txnlab/use-wallet": "^2.8.2",
"algosdk": ">=2.9.0 <3.0",
{% if use_daisy_ui -%}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
{% if use_eslint_prettier -%}
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": true
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
{%- endif %}
"dotenv.enableAutocloaking": false,
Expand Down

0 comments on commit dee48a9

Please sign in to comment.