You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/src/content/ignition/docs/advanced/migrating.md
+16-2
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ To get started, we’ll uninstall the `hardhat-deploy` plugin and install the Ha
8
8
9
9
1. Remove the `hardhat-deploy` packages from your project:
10
10
11
-
::::tabsgroup{options="npm,yarn"}
11
+
::::tabsgroup{options="npm,yarn,pnpm"}
12
12
13
13
:::tab{value="npm"}
14
14
@@ -26,11 +26,17 @@ To get started, we’ll uninstall the `hardhat-deploy` plugin and install the Ha
26
26
27
27
:::
28
28
29
+
:::tab{value="pnpm"}
30
+
31
+
```sh
32
+
pnpm remove hardhat-deploy hardhat-deploy-ethers
33
+
```
34
+
:::
29
35
::::
30
36
31
37
2. Install the Hardhat Ignition package and `hardhat-network-helpers` to provide additional testing support as a replacement for `hardhat-deploy` functionality like EVM snapshots:
32
38
33
-
::::tabsgroup{options="npm,yarn"}
39
+
::::tabsgroup{options="npm,yarn,pnpm"}
34
40
35
41
:::tab{value="npm"}
36
42
@@ -48,6 +54,14 @@ To get started, we’ll uninstall the `hardhat-deploy` plugin and install the Ha
0 commit comments