From e74b5a7c1a42b7e03da2855b23a57ea87b3fc066 Mon Sep 17 00:00:00 2001 From: Denis LE Date: Sat, 28 Mar 2020 19:06:58 +0100 Subject: [PATCH 1/3] add to readme that tailwind.config.js is required fix #74 --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f766281..4b630e7 100755 --- a/README.md +++ b/README.md @@ -48,3 +48,7 @@ Before: After: CSS syntax highlighting after + +## Requirements + +This extension requires a `tailwind.config.js` file to be [present in your project folder](https://github.com/bradlc/vscode-tailwindcss/blob/master/package.json#L26). You can create it with `npx tailwind init`. From 0f5613b15717cecde62078bb1623816df24d117c Mon Sep 17 00:00:00 2001 From: Denis LE Date: Sat, 9 May 2020 21:48:32 +0200 Subject: [PATCH 2/3] tailwindcss must be installed --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b630e7..4289a40 100755 --- a/README.md +++ b/README.md @@ -51,4 +51,6 @@ After: ## Requirements -This extension requires a `tailwind.config.js` file to be [present in your project folder](https://github.com/bradlc/vscode-tailwindcss/blob/master/package.json#L26). You can create it with `npx tailwind init`. +This extension requires: +* a `tailwind.config.js` file to be [present in your project folder](https://github.com/bradlc/vscode-tailwindcss/blob/master/package.json#L26). You can create it with `npx tailwind init`. +* `tailwindcss` to be installed (present in project `node_modules/`) From 1c49bfb99807c36ee56a1afb4f8e22c85521ab35 Mon Sep 17 00:00:00 2001 From: Denis LE Date: Sun, 17 May 2020 19:26:36 +0200 Subject: [PATCH 3/3] Move requirements section over features section --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4289a40..2a636f9 100755 --- a/README.md +++ b/README.md @@ -6,6 +6,12 @@ HTML autocompletion +## Requirements + +This extension requires: +* a `tailwind.config.js` file to be [present in your project folder](https://github.com/bradlc/vscode-tailwindcss/blob/master/package.json#L26). You can create it with `npx tailwind init`. +* `tailwindcss` to be installed (present in project `node_modules/`) + ## Features Tailwind CSS IntelliSense uses your projects Tailwind installation and configuration to provide suggestions as you type. @@ -48,9 +54,3 @@ Before: After: CSS syntax highlighting after - -## Requirements - -This extension requires: -* a `tailwind.config.js` file to be [present in your project folder](https://github.com/bradlc/vscode-tailwindcss/blob/master/package.json#L26). You can create it with `npx tailwind init`. -* `tailwindcss` to be installed (present in project `node_modules/`)