From 4e6615107417697cac6717fab0afa6ff7baed0eb Mon Sep 17 00:00:00 2001 From: dbale-altoros Date: Fri, 13 Jan 2023 16:21:45 -0300 Subject: [PATCH] updated solidity parser to 0.14.5 --- .eslintignore | 1 + .gitignore | 1 + package-lock.json | 14 +++++++------- package.json | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.eslintignore b/.eslintignore index e4626b39..73487996 100644 --- a/.eslintignore +++ b/.eslintignore @@ -2,3 +2,4 @@ coverage node_modules scripts e2e +/_temp diff --git a/.gitignore b/.gitignore index c45d82ea..3614b26f 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ convertLib.sol /docs/Gemfile* antlr4.jar /docs/.sass-cache/ +_temp/ diff --git a/package-lock.json b/package-lock.json index d6d8b074..322e43ae 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "3.3.7", "license": "MIT", "dependencies": { - "@solidity-parser/parser": "^0.14.1", + "@solidity-parser/parser": "^0.14.5", "ajv": "^6.6.1", "antlr4": "4.7.1", "ast-parents": "0.0.1", @@ -471,9 +471,9 @@ } }, "node_modules/@solidity-parser/parser": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/@solidity-parser/parser/-/parser-0.14.1.tgz", - "integrity": "sha512-eLjj2L6AuQjBB6s/ibwCAc0DwrR5Ge+ys+wgWo+bviU7fV2nTMQhU63CGaDKXg9iTmMxwhkyoggdIR7ZGRfMgw==", + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@solidity-parser/parser/-/parser-0.14.5.tgz", + "integrity": "sha512-6dKnHZn7fg/iQATVEzqyUOyEidbn05q7YA2mQ9hC0MMXhhV3/JrsxmFSYZAcr7j1yUP700LLhTruvJ3MiQmjJg==", "dependencies": { "antlr4ts": "^0.5.0-alpha.4" } @@ -6053,9 +6053,9 @@ "dev": true }, "@solidity-parser/parser": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/@solidity-parser/parser/-/parser-0.14.1.tgz", - "integrity": "sha512-eLjj2L6AuQjBB6s/ibwCAc0DwrR5Ge+ys+wgWo+bviU7fV2nTMQhU63CGaDKXg9iTmMxwhkyoggdIR7ZGRfMgw==", + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/@solidity-parser/parser/-/parser-0.14.5.tgz", + "integrity": "sha512-6dKnHZn7fg/iQATVEzqyUOyEidbn05q7YA2mQ9hC0MMXhhV3/JrsxmFSYZAcr7j1yUP700LLhTruvJ3MiQmjJg==", "requires": { "antlr4ts": "^0.5.0-alpha.4" } diff --git a/package.json b/package.json index f840e20e..c05ae99c 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "author": "Ilya Drabenia ", "license": "MIT", "dependencies": { - "@solidity-parser/parser": "^0.14.1", + "@solidity-parser/parser": "^0.14.5", "ajv": "^6.6.1", "antlr4": "4.7.1", "ast-parents": "0.0.1",