From 390d1a81fbcf23c71588a38185c57f3809f2464c Mon Sep 17 00:00:00 2001 From: Truong Nguyen Date: Thu, 20 Jul 2023 18:30:28 +0700 Subject: [PATCH] refactor: Update order of jest preview configues in documentation --- website/docs/api/jestPreviewConfigure.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/website/docs/api/jestPreviewConfigure.md b/website/docs/api/jestPreviewConfigure.md index b2983e62..a4017841 100644 --- a/website/docs/api/jestPreviewConfigure.md +++ b/website/docs/api/jestPreviewConfigure.md @@ -36,6 +36,12 @@ jestPreviewConfigure({ }); ``` +## sharedSassResources: string[] + +Default: `undefined` + +Optional list of paths to SASS files that define shared resources (e.g. variables, mixins, etc). The paths are relative to the root of the project. Requires SASS v1.45.0 or higher. + ## publicFolder: string Default: `undefined`. @@ -59,9 +65,3 @@ Default: `false` Automatically preview the UI in the external browser when the test fails. You don't need to invoke `preview.debug()` by yourself anymore. Set to `false` if you experience any error or just want to opt out. - -## sharedSassResources: string[] - -Default: `undefined` - -Optional list of paths to SASS files that define shared resources (e.g. variables, mixins, etc). The paths are relative to the root of the project. Requires SASS v1.45.0 or higher.