From fdd531dd92ff0d1edfa487777907aaa29dc2c0d4 Mon Sep 17 00:00:00 2001 From: Trae Yelovich Date: Wed, 2 Oct 2024 08:19:38 -0400 Subject: [PATCH] doc: Address feedback in Extenders.md Signed-off-by: Trae Yelovich --- packages/secrets/src/keyring/EXTENDERS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/secrets/src/keyring/EXTENDERS.md b/packages/secrets/src/keyring/EXTENDERS.md index 898fa3734..a61196240 100644 --- a/packages/secrets/src/keyring/EXTENDERS.md +++ b/packages/secrets/src/keyring/EXTENDERS.md @@ -71,7 +71,7 @@ await keyring.deletePassword("TestService", "AccountA"); } ``` -This will prevent Webpack from trying to dynamically resolve the Secrets SDK during compile time. This does not affect the majority of developers, as Webpack will omit any unused Imperative modules during the bundling phase. +This will prevent Webpack from trying to dynamically resolve the Secrets SDK during compile time. This does not affect the majority of developers, as Webpack omits any unused Imperative modules during the bundling phase. --- @@ -90,7 +90,7 @@ your-pkg/ │ └── (node binaries for Secrets SDK) ``` -If you are using ESbuild or Webpack, consider using a copy plugin to copy the `prebuilds` folder from the Secrets SDK _node_modules_ folder: +If you are using ESbuild or Webpack, consider using a copy plug-in to copy the `prebuilds` folder from the Secrets SDK _node_modules_ folder: - ESbuild: [esbuild-copy-static-files](https://www.npmjs.com/package/esbuild-copy-static-files) - Webpack: [copy-webpack-plugin](https://www.npmjs.com/package/copy-webpack-plugin)