You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,3 +31,34 @@ npm test
31
31
```
32
32
33
33
Please ensure that the tests are passing when submitting a pull request. If you're adding new features to Tailwind, please include tests.
34
+
35
+
## Building the CSS and trying your changes manually
36
+
37
+
In addition to the automated tests, if you'd like to test the generated CSS manually with your own test HTML file, you can generate the default build by running:
38
+
39
+
```sh
40
+
npm run prepare
41
+
```
42
+
43
+
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:
0 commit comments