From 3ac1aee3602d757b3405477d236a9b2f6ce88b29 Mon Sep 17 00:00:00 2001 From: convert-to-npm Date: Mon, 25 May 2026 20:43:42 -0700 Subject: [PATCH 1/2] Convert from yarn to npm --- .gitignore | 1 - .npmrc | 2 + .yarnrc | 1 - README.md | 15 +- convert.sh | 2 +- docs/CHAIN_MAPPING_SYNCHRONIZERS.md | 14 +- docs/CREATING_AN_EXCHANGE_PLUGIN.md | 6 +- package-lock.json | 23093 ++++++++++++++++++++++++++ yarn.lock | 11557 ------------- 9 files changed, 23113 insertions(+), 11578 deletions(-) create mode 100644 .npmrc delete mode 100644 .yarnrc create mode 100644 package-lock.json delete mode 100644 yarn.lock diff --git a/.gitignore b/.gitignore index 57a010e4..2ea85844 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,6 @@ # Package managers: node_modules/ npm-debug.log -package-lock.json yarn-error.log # Editors: diff --git a/.npmrc b/.npmrc new file mode 100644 index 00000000..4fc2bed4 --- /dev/null +++ b/.npmrc @@ -0,0 +1,2 @@ +legacy-peer-deps=true +ignore-scripts=true diff --git a/.yarnrc b/.yarnrc deleted file mode 100644 index d52997a9..00000000 --- a/.yarnrc +++ /dev/null @@ -1 +0,0 @@ ---ignore-scripts true diff --git a/README.md b/README.md index 34de6d29..45a09f8b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Please see [index.js](./src/index.js) for the list of plugins in this repo. Thes Fist, add this library to your project: ```sh -yarn add edge-exchange-plugins +npm install edge-exchange-plugins ``` ### Node.js @@ -42,7 +42,7 @@ The bundle located in `dist/edge-exchange-plugins.js` will automatically registe