From f52ba6266009930e58449362a7da60f355416a5b Mon Sep 17 00:00:00 2001 From: Mikhail <16622558+mmv08@users.noreply.github.com> Date: Wed, 15 May 2024 15:52:05 +0200 Subject: [PATCH] npm -> pnpm fix --- .github/workflows/ci_4337_upstream_bundler.yml | 3 +-- .github/workflows/ci_passkey_example.yml | 4 ++-- .prettierignore | 2 +- examples/4337-passkeys-singleton-signer/README.md | 2 +- examples/4337-passkeys/README.md | 2 +- modules/passkey/package.json | 5 ----- 6 files changed, 6 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci_4337_upstream_bundler.yml b/.github/workflows/ci_4337_upstream_bundler.yml index 72e97ad3..46bf989c 100644 --- a/.github/workflows/ci_4337_upstream_bundler.yml +++ b/.github/workflows/ci_4337_upstream_bundler.yml @@ -27,5 +27,4 @@ jobs: cache: pnpm - run: | pnpm install - pnpm run --filter "@safe-global/safe-4337" test:4337:upstream - pnpm run --filter "@safe-global/safe-passkey" test:4337:upstream + pnpm run --filter "{modules/4337}" --filter "{modules/passkey}" test:4337:upstream diff --git a/.github/workflows/ci_passkey_example.yml b/.github/workflows/ci_passkey_example.yml index 141055ad..973f9122 100644 --- a/.github/workflows/ci_passkey_example.yml +++ b/.github/workflows/ci_passkey_example.yml @@ -21,8 +21,8 @@ jobs: cache: pnpm - run: | pnpm install - npm run lint -w examples/4337-passkeys - npm run build -w examples/4337-passkeys + pnpm run -F "{examples/4337-passkeys}" lint + pnpm run -F "{examples/4337-passkeys}" build env: VITE_WC_CLOUD_PROJECT_ID: ${{ secrets.VITE_WC_CLOUD_PROJECT_ID }} VITE_WC_4337_BUNDLER_URL: ${{ secrets.VITE_WC_4337_BUNDLER_URL }} diff --git a/.prettierignore b/.prettierignore index 97ce6975..c66ad843 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,4 +2,4 @@ examples/** modules/** packages/** -pnpm-lock.yaml \ No newline at end of file +pnpm-lock.yaml diff --git a/examples/4337-passkeys-singleton-signer/README.md b/examples/4337-passkeys-singleton-signer/README.md index 1b941d0e..37f52be7 100644 --- a/examples/4337-passkeys-singleton-signer/README.md +++ b/examples/4337-passkeys-singleton-signer/README.md @@ -33,7 +33,7 @@ Helpful links: ### Run the app in development mode ```bash -pnpm run dev -w examples/4337-passkeys-singleton-signer +pnpm run -F {examples/4337-passkeys-singleton-signer} dev ``` ## Config adjustments diff --git a/examples/4337-passkeys/README.md b/examples/4337-passkeys/README.md index 0d08ca49..c18bf093 100644 --- a/examples/4337-passkeys/README.md +++ b/examples/4337-passkeys/README.md @@ -33,7 +33,7 @@ Helpful links: ### Run the app in development mode ```bash -pnpm run dev -w examples/4337-passkeys +pnpm run -F {examples/4337-passkeys} dev ``` ## Config adjustments diff --git a/modules/passkey/package.json b/modules/passkey/package.json index a011eb74..8bd7ea3d 100644 --- a/modules/passkey/package.json +++ b/modules/passkey/package.json @@ -60,11 +60,6 @@ "hardhat-deploy": "^0.12.4", "solhint": "^5.0.1" }, - "overrides": { - "@safe-global/safe-contracts": { - "ethers": "^6.11.1" - } - }, "dependencies": { "@openzeppelin/contracts": "^5.0.0", "@account-abstraction/contracts": "^0.7.0",