Skip to content

Commit e337dbb

Browse files
committed
🔁 Update Dependencies
Signed-off-by: pcaversaccio <[email protected]>
1 parent ff52c59 commit e337dbb

File tree

3 files changed

+192
-184
lines changed

3 files changed

+192
-184
lines changed

eslint.config.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
const eslint = require("@eslint/js");
33
const tseslint = require("typescript-eslint");
44
const eslintConfigPrettier = require("eslint-config-prettier");
5+
const globals = require("globals");
6+
const { defineConfig } = require("eslint/config");
57
/* eslint-enable @typescript-eslint/no-require-imports */
68

7-
/** @type {import('typescript-eslint').TSESLint.FlatConfig.ConfigArray} */
8-
module.exports = tseslint.config(
9+
module.exports = defineConfig(
910
{
1011
files: ["**/*.{js,ts}"],
1112
extends: [
@@ -20,6 +21,9 @@ module.exports = tseslint.config(
2021
languageOptions: {
2122
ecmaVersion: "latest",
2223
parser: tseslint.parser,
24+
globals: {
25+
...globals.node,
26+
},
2327
parserOptions: {
2428
project: true,
2529
tsconfigRootDir: __dirname,

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
"author": "pcaversaccio (https://pcaversaccio.com)",
2121
"license": "MIT",
22-
"packageManager": "pnpm@10.24.0",
22+
"packageManager": "pnpm@10.25.0",
2323
"scripts": {
2424
"help": "npx hardhat help",
2525
"accounts": "npx hardhat accounts",
@@ -213,7 +213,7 @@
213213
"lint:fix": "pnpm run prettier:fix && pnpm run solhint:fix && npx eslint . --fix"
214214
},
215215
"devDependencies": {
216-
"@eslint/js": "^9.39.1",
216+
"@eslint/js": "^9.39.2",
217217
"@matterlabs/hardhat-zksync-deploy": "^1.8.0",
218218
"@matterlabs/hardhat-zksync-ethers": "^1.4.0",
219219
"@matterlabs/hardhat-zksync-solc": "^1.5.1",
@@ -227,24 +227,25 @@
227227
"@typechain/hardhat": "^9.1.0",
228228
"@types/chai": "^4.3.20",
229229
"@types/mocha": "^10.0.10",
230-
"@types/node": "^24.10.1",
230+
"@types/node": "^25.0.1",
231231
"chai": "^4.5.0",
232232
"dotenv": "^17.2.3",
233-
"eslint": "^9.39.1",
233+
"eslint": "^9.39.2",
234234
"eslint-config-prettier": "^10.1.8",
235235
"ethers": "^6.16.0",
236-
"hardhat": "^2.27.1",
236+
"globals": "^16.5.0",
237+
"hardhat": "^2.27.2",
237238
"hardhat-abi-exporter": "^2.11.0",
238239
"hardhat-contract-sizer": "^2.10.1",
239240
"hardhat-gas-reporter": "^2.3.0",
240241
"prettier": "^3.7.4",
241242
"prettier-plugin-solidity": "^2.2.0",
242243
"solhint": "^6.0.1",
243-
"solidity-coverage": "^0.8.16",
244+
"solidity-coverage": "^0.8.17",
244245
"ts-node": "^10.9.2",
245246
"typechain": "^8.3.2",
246247
"typescript": "^5.9.3",
247-
"typescript-eslint": "^8.48.1",
248+
"typescript-eslint": "^8.49.0",
248249
"zksync-ethers": "^6.21.0"
249250
},
250251
"pnpm": {

0 commit comments

Comments
 (0)