From ecffd24bd8321f95f270c69cba124eb00a60af54 Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Sat, 27 Jun 2020 14:54:09 -0400 Subject: [PATCH] Fix mistake in CONTRIBUTING.md --- .github/CONTRIBUTING.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index e1d41f089..704597620 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -19,7 +19,7 @@ npm run style To automatically fix any style violations in your code, you can run: ```sh -npm run style --fix +npm run style -- --fix ``` ## Running tests @@ -43,19 +43,19 @@ npm run prepare This will create new CSS files in the `/dist` folder which you can reference in your own test HTML file. We often test our own changes by creating an `index.html` file in the root of the Tailwind project itself that pulls in the `/dist/tailwind.css` stylesheet: ```html - + - - - + + + Hello, world!

Hello world!

-```` +``` You can then use a tool like [live-server](https://www.npmjs.com/package/live-server) to preview it in the browser: