Skip to content

Commit dee48a9

Browse files
authored
fix: lock defly and pera connect dependencies, so they're algosdk@2 compatible (#44)
* fix: lock defly and pera connect dependencies, so they're algosdk@2 compatible * chore: update vscode setting
1 parent f34f4ee commit dee48a9

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

examples/cloud_provider/production_react_netlify/.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"editor.formatOnSave": true,
33
"editor.defaultFormatter": "esbenp.prettier-vscode",
44
"editor.codeActionsOnSave": {
5-
"source.fixAll.eslint": true,
6-
"source.organizeImports": true
5+
"source.fixAll.eslint": "explicit",
6+
"source.organizeImports": "explicit"
77
},
88
"dotenv.enableAutocloaking": false,
99
"jest.autoRun": {

examples/cloud_provider/production_react_netlify/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
},
3737
"dependencies": {
3838
"@algorandfoundation/algokit-utils": "^7.0.0",
39-
"@blockshake/defly-connect": "^1.1.6",
39+
"@blockshake/defly-connect": "1.1.6",
4040
"@daffiwallet/connect": "^1.0.3",
41-
"@perawallet/connect": "^1.3.4",
41+
"@perawallet/connect": "1.3.5",
4242
"@txnlab/use-wallet": "^2.8.2",
4343
"algosdk": ">=2.9.0 <3.0",
4444
"daisyui": "^4.0.0",

examples/cloud_provider/production_react_vercel/.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"editor.formatOnSave": true,
33
"editor.defaultFormatter": "esbenp.prettier-vscode",
44
"editor.codeActionsOnSave": {
5-
"source.fixAll.eslint": true,
6-
"source.organizeImports": true
5+
"source.fixAll.eslint": "explicit",
6+
"source.organizeImports": "explicit"
77
},
88
"dotenv.enableAutocloaking": false,
99
"jest.autoRun": {

examples/cloud_provider/production_react_vercel/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
},
3737
"dependencies": {
3838
"@algorandfoundation/algokit-utils": "^7.0.0",
39-
"@blockshake/defly-connect": "^1.1.6",
39+
"@blockshake/defly-connect": "1.1.6",
4040
"@daffiwallet/connect": "^1.0.3",
41-
"@perawallet/connect": "^1.3.4",
41+
"@perawallet/connect": "1.3.5",
4242
"@txnlab/use-wallet": "^2.8.2",
4343
"algosdk": ">=2.9.0 <3.0",
4444
"daisyui": "^4.0.0",

examples/production_react/.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"editor.formatOnSave": true,
33
"editor.defaultFormatter": "esbenp.prettier-vscode",
44
"editor.codeActionsOnSave": {
5-
"source.fixAll.eslint": true,
6-
"source.organizeImports": true
5+
"source.fixAll.eslint": "explicit",
6+
"source.organizeImports": "explicit"
77
},
88
"dotenv.enableAutocloaking": false,
99
"jest.autoRun": {

examples/production_react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
},
3737
"dependencies": {
3838
"@algorandfoundation/algokit-utils": "^7.0.0",
39-
"@blockshake/defly-connect": "^1.1.6",
39+
"@blockshake/defly-connect": "1.1.6",
4040
"@daffiwallet/connect": "^1.0.3",
41-
"@perawallet/connect": "^1.3.4",
41+
"@perawallet/connect": "1.3.5",
4242
"@txnlab/use-wallet": "^2.8.2",
4343
"algosdk": ">=2.9.0 <3.0",
4444
"daisyui": "^4.0.0",

examples/starter_react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
},
2626
"dependencies": {
2727
"@algorandfoundation/algokit-utils": "^7.0.0",
28-
"@blockshake/defly-connect": "^1.1.6",
28+
"@blockshake/defly-connect": "1.1.6",
2929
"@daffiwallet/connect": "^1.0.3",
30-
"@perawallet/connect": "^1.3.4",
30+
"@perawallet/connect": "1.3.5",
3131
"@txnlab/use-wallet": "^2.8.2",
3232
"algosdk": ">=2.9.0 <3.0",
3333
"notistack": "^3.0.1",

template_content/package.json.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
},
4545
"dependencies": {
4646
"@algorandfoundation/algokit-utils": "^7.0.0",
47-
"@blockshake/defly-connect": "^1.1.6",
47+
"@blockshake/defly-connect": "1.1.6",
4848
"@daffiwallet/connect": "^1.0.3",
49-
"@perawallet/connect": "^1.3.4",
49+
"@perawallet/connect": "1.3.5",
5050
"@txnlab/use-wallet": "^2.8.2",
5151
"algosdk": ">=2.9.0 <3.0",
5252
{% if use_daisy_ui -%}

template_content/{% if ide_vscode %}.vscode{% endif %}/settings.json.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
{% if use_eslint_prettier -%}
44
"editor.defaultFormatter": "esbenp.prettier-vscode",
55
"editor.codeActionsOnSave": {
6-
"source.fixAll.eslint": true,
7-
"source.organizeImports": true
6+
"source.fixAll.eslint": "explicit",
7+
"source.organizeImports": "explicit"
88
},
99
{%- endif %}
1010
"dotenv.enableAutocloaking": false,

0 commit comments

Comments
 (0)