hardhat-deploy 2.0.0-next.52 → 2.0.0-next.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -98,7 +98,7 @@ export async function loadEnvironmentFromHardhat(params
98
98
  });
99
99
  }
100
100
  function getVariable(prefix, name) {
101
- // We transform dash into underscore as dash are not supported everywhwre in env var names
101
+ // We transform dash into underscore as dash are not supported everywhere in env var names
102
102
  const variableName = (prefix + name).replaceAll('-', '_');
103
103
  let uri = process.env[variableName];
104
104
  if (uri === 'SECRET') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hardhat-deploy",
3
- "version": "2.0.0-next.52",
3
+ "version": "2.0.0-next.54",
4
4
  "description": "deployment plugin for hardhat",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -28,18 +28,18 @@
28
28
  "src"
29
29
  ],
30
30
  "devDependencies": {
31
- "@changesets/cli": "^2.29.7",
32
- "@types/node": "^24.5.2",
31
+ "@changesets/cli": "^2.29.8",
32
+ "@types/node": "^25.0.2",
33
33
  "as-soon": "^0.0.11",
34
- "hardhat": "3.0.6",
35
- "rimraf": "^6.0.1",
36
- "rocketh": "0.15.0",
34
+ "hardhat": "3.1.0",
35
+ "rimraf": "^6.1.2",
36
+ "rocketh": "0.16.0",
37
37
  "set-defaults": "^0.0.5",
38
- "typescript": "^5.9.2"
38
+ "typescript": "^5.9.3"
39
39
  },
40
40
  "peerDependencies": {
41
- "hardhat": "^3.0.6",
42
- "rocketh": "^0.15.0"
41
+ "hardhat": "^3.1.0",
42
+ "rocketh": "^0.16.0"
43
43
  },
44
44
  "dependencies": {
45
45
  "@nomicfoundation/hardhat-zod-utils": "3.0.1",
package/src/helpers.ts CHANGED
@@ -137,7 +137,7 @@ export async function loadEnvironmentFromHardhat<
137
137
  }
138
138
 
139
139
  function getVariable(prefix: string, name: string): string | SensitiveString | undefined {
140
- // We transform dash into underscore as dash are not supported everywhwre in env var names
140
+ // We transform dash into underscore as dash are not supported everywhere in env var names
141
141
  const variableName = (prefix + name).replaceAll('-', '_');
142
142
  let uri = process.env[variableName];
143
143
  if (uri === 'SECRET') {