From 6b9967d14651429e6ee49798d32ef55b8aa111b9 Mon Sep 17 00:00:00 2001 From: Josh Hedstrom Date: Fri, 12 Jan 2024 11:35:27 -0700 Subject: [PATCH] correct autofix commands in node-sass.mdx These commands are not recognized using the latest version of the stencil-cli. The command that works is `stencil scss-autofix`. --- docs/stencil-docs/installing-stencil-cli/node-sass.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/stencil-docs/installing-stencil-cli/node-sass.mdx b/docs/stencil-docs/installing-stencil-cli/node-sass.mdx index 93ac0eae1..33bb0d671 100644 --- a/docs/stencil-docs/installing-stencil-cli/node-sass.mdx +++ b/docs/stencil-docs/installing-stencil-cli/node-sass.mdx @@ -25,13 +25,13 @@ stencil bundle a. Use the "dry run" option to see potential changes without making or saving those changes. ```shell copy -stencil -scss-autofix.js --dry +stencil scss-autofix --dry ``` b. To make the changes and revalidate, run the following: ```shell copy -stencil -scss-autofix.js +stencil scss-autofix ``` ```shell copy