From 7c8e73508d6bab55153e254c9e94ca18cf06b25d Mon Sep 17 00:00:00 2001 From: "Eli H. Schei" <60283283+Eli-Schei@users.noreply.github.com> Date: Thu, 4 Dec 2025 10:25:08 +0100 Subject: [PATCH] Fixed typing error in install command the package name @rushstack/heft had a typing error. --- docs/spfx/toolchain/customize-heft-toolchain-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/spfx/toolchain/customize-heft-toolchain-overview.md b/docs/spfx/toolchain/customize-heft-toolchain-overview.md index 4b157f550..fd04652f6 100644 --- a/docs/spfx/toolchain/customize-heft-toolchain-overview.md +++ b/docs/spfx/toolchain/customize-heft-toolchain-overview.md @@ -35,7 +35,7 @@ npx @rushstack/heft --help > Similar to Gulp, Heft is installed locally within your project. However, [unlike Gulp that requires installing the Gulp CLI globally](https://www.voitanos.io/blog/mea-culpa-always-install-gulp-cli-globally-not-gulp/), you can install the same Heft npm package globally to simplify running Heft commands. > > ```console -> npm install @rushstsack/heft --global +> npm install @rushstack/heft --global > ``` > [!TIP]