From dedaa34c9feb357682df0efb47d2060aa5ec7a60 Mon Sep 17 00:00:00 2001 From: Morteza Shojaei <31728528+mortezashojaei@users.noreply.github.com> Date: Wed, 16 Oct 2024 15:07:36 +0330 Subject: [PATCH 1/4] merge with main repo latest changes --- .vscode/launch.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000..37fcc6042b --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Launch Program", + "skipFiles": ["/**"], + "program": "$${workspaceFolder}/**/*.ts", + "outFiles": ["${workspaceFolder}/**/*.js"] + } + ] +} From c946f6c4fb724530199261bb1d353ac6972f7801 Mon Sep 17 00:00:00 2001 From: ljankovic-txfusion Date: Thu, 23 Jan 2025 12:05:04 +0100 Subject: [PATCH 2/4] docs(changeset): Export empty zksync buildArtifact to satisfy package.json exports --- .changeset/tender-feet-sit.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/tender-feet-sit.md diff --git a/.changeset/tender-feet-sit.md b/.changeset/tender-feet-sit.md new file mode 100644 index 0000000000..27829be010 --- /dev/null +++ b/.changeset/tender-feet-sit.md @@ -0,0 +1,5 @@ +--- +'@hyperlane-xyz/core': patch +--- + +Export empty zksync buildArtifact to satisfy package.json exports From f7e67e36c38df3c2a97af0f69bd07f2ddd0c1cf4 Mon Sep 17 00:00:00 2001 From: ljankovic-txfusion Date: Thu, 23 Jan 2025 12:06:01 +0100 Subject: [PATCH 3/4] feat(zksync): add empty buildArtifact export for package.json compatibility --- solidity/core-utils/zksync/buildArtifact.ts | 1 + 1 file changed, 1 insertion(+) create mode 100644 solidity/core-utils/zksync/buildArtifact.ts diff --git a/solidity/core-utils/zksync/buildArtifact.ts b/solidity/core-utils/zksync/buildArtifact.ts new file mode 100644 index 0000000000..cc5a00ac95 --- /dev/null +++ b/solidity/core-utils/zksync/buildArtifact.ts @@ -0,0 +1 @@ +export const buildArtifact: any = {}; From 4dafa80889b98ec395dcdaa2696091e4411388bc Mon Sep 17 00:00:00 2001 From: ljankovic-txfusion Date: Thu, 23 Jan 2025 12:07:14 +0100 Subject: [PATCH 4/4] chore: remove unused configuration file --- .vscode/launch.json | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 37fcc6042b..0000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "node", - "request": "launch", - "name": "Launch Program", - "skipFiles": ["/**"], - "program": "$${workspaceFolder}/**/*.ts", - "outFiles": ["${workspaceFolder}/**/*.js"] - } - ] -}