From ed643eb257af73329fceacb165604976609a290a Mon Sep 17 00:00:00 2001 From: kiliman Date: Wed, 6 Dec 2023 16:02:46 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Update=20documents?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/setup/eslint.md | 2 -- docs/setup/prettier.md | 2 -- docs/setup/remix-flat-routes.md | 3 ++- docs/setup/tailwind.md | 6 +++--- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/docs/setup/eslint.md b/docs/setup/eslint.md index b4063ea..b0f0328 100644 --- a/docs/setup/eslint.md +++ b/docs/setup/eslint.md @@ -14,8 +14,6 @@ The following dev packages are added: - `@types/eslint` - `@remix-run/eslint-config` -> Notes - ### Scripts The following scripts are added to _package.json_: diff --git a/docs/setup/prettier.md b/docs/setup/prettier.md index 9f8a00c..ab67b45 100644 --- a/docs/setup/prettier.md +++ b/docs/setup/prettier.md @@ -10,8 +10,6 @@ The following packages are added: - `prettier-plugin-tailwindcss` - `eslint-config-prettier` -> Notes - ### Scripts The following scripts are added to _package.json_: diff --git a/docs/setup/remix-flat-routes.md b/docs/setup/remix-flat-routes.md index e9857d1..5dfc1a0 100644 --- a/docs/setup/remix-flat-routes.md +++ b/docs/setup/remix-flat-routes.md @@ -1,7 +1,8 @@ # `remix-flat-routes` Setup Remix v2 defaults to using the flat-routes convention. This package extends the -`v2` convention to support _hybrid_ routes, extended route filenames, +`v2` convention to support _hybrid_ routes, extended route filenames, custom +param prefix, etc. ### Packages diff --git a/docs/setup/tailwind.md b/docs/setup/tailwind.md index b26c233..5f13cfd 100644 --- a/docs/setup/tailwind.md +++ b/docs/setup/tailwind.md @@ -29,7 +29,7 @@ The following files are added: - app/tailwind.css > The _tailwind.css_ file contains the tailwind directives. The Vite compiler -> will automatically build the final tailwind.css file +> will automatically build the final _tailwind.css_ file The following files are updated: @@ -43,6 +43,6 @@ The following files are updated: - ] ``` -> Unlike non-Vite Remix, we are importing the _app/tailwind.css_ for module side- -> effects. Vite will generate the tailwind.css file and include the `` +> Unlike non-Vite Remix, we are importing the _app/tailwind.css_ for module +> side-effects. Vite will generate the _tailwind.css_ file and include the `` > component automatically.