From a63530c83090a435d66be476951b8160c08511ba Mon Sep 17 00:00:00 2001 From: Josh Ford Date: Thu, 21 Nov 2024 17:47:40 -0800 Subject: [PATCH 1/2] feat: add to devtools projet workflow --- .github/workflows/add-to-devtools.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/add-to-devtools.yml diff --git a/.github/workflows/add-to-devtools.yml b/.github/workflows/add-to-devtools.yml new file mode 100644 index 000000000..35bd989f8 --- /dev/null +++ b/.github/workflows/add-to-devtools.yml @@ -0,0 +1,22 @@ +name: 'Add to DevTools Project' + +on: + issues: + types: + - opened + - reopened + pull_request: + types: + - opened + - reopened + +jobs: + add-to-project: + name: Add issue/PR to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.0 + with: + # add to DevTools Project #156 + project-url: https://github.com/orgs/near/projects/156 + github-token: ${{ secrets.GH_TOKEN }} From cf89e923aae8a98813b0c7a775e0535bac9ef613 Mon Sep 17 00:00:00 2001 From: denbite Date: Mon, 30 Dec 2024 17:39:12 +0100 Subject: [PATCH 2/2] fix: define range of `near-api-js` versions as peerDependency instead of an exact one --- packages/account-export/package.json | 2 +- packages/core/package.json | 2 +- packages/wallet-connect/package.json | 2 +- packages/wallet-utils/package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/account-export/package.json b/packages/account-export/package.json index 64810b77c..29d67b347 100644 --- a/packages/account-export/package.json +++ b/packages/account-export/package.json @@ -21,6 +21,6 @@ }, "homepage": "https://github.com/near/wallet-selector/tree/magin/packages/account-export", "peerDependencies": { - "near-api-js": "4.0.3" + "near-api-js": "^4.0.0 || ^5.0.0" } } \ No newline at end of file diff --git a/packages/core/package.json b/packages/core/package.json index ac3fc0f50..74ad540ef 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -20,6 +20,6 @@ }, "homepage": "https://github.com/near/wallet-selector/tree/main/packages/core", "peerDependencies": { - "near-api-js": "4.0.3" + "near-api-js": "^4.0.0 || ^5.0.0" } } diff --git a/packages/wallet-connect/package.json b/packages/wallet-connect/package.json index ea94e3bae..1eea2f11c 100644 --- a/packages/wallet-connect/package.json +++ b/packages/wallet-connect/package.json @@ -22,6 +22,6 @@ }, "homepage": "https://github.com/near/wallet-selector/tree/main/packages/wallet-connect", "peerDependencies": { - "near-api-js": "4.0.3" + "near-api-js": "^4.0.0 || ^5.0.0" } } \ No newline at end of file diff --git a/packages/wallet-utils/package.json b/packages/wallet-utils/package.json index 3bcb60be1..b8e8dae67 100644 --- a/packages/wallet-utils/package.json +++ b/packages/wallet-utils/package.json @@ -20,6 +20,6 @@ }, "homepage": "https://github.com/near/wallet-selector/tree/main/packages/wallet-utils", "peerDependencies": { - "near-api-js": "4.0.3" + "near-api-js": "^4.0.0 || ^5.0.0" } } \ No newline at end of file