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: README.md
+24-15Lines changed: 24 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,25 +2,24 @@
2
2
3
3
A bare-bones Tailwind CSS boilerplate.
4
4
5
-
It creates a simple HTML + CSS template with [Tailwind CSS](https://tailwindcss.com)
6
-
support, served by [Parcel](https://parceljs.org) and using [PurgeCSS](https://purgecss.com)
7
-
in production builds.
5
+
It creates a simple HTML + CSS template with [Tailwind CSS][tailwind] support,
6
+
served by [Parcel][parcel] and using [PurgeCSS][purgecss] in production builds.
8
7
9
8
## Getting started
10
9
11
10
### Requirements
12
11
13
-
[Yarn](https://yarnpkg.com) is suggested, but not required. The project will be
14
-
set up with [npm](https://www.npmjs.com/get-npm) if Yarn is not found.
12
+
[Yarn][yarn] is suggested, but not required. The project will be set up with
13
+
[npm][npm] if Yarn is not found.
15
14
16
15
### Create boilerplate
17
16
18
17
```bash
19
-
$ yarn create tailwindcss-boilerplate
18
+
yarn create tailwindcss-boilerplate
20
19
21
20
# or
22
21
23
-
$ npx create-tailwindcss-boilerplate
22
+
npx create-tailwindcss-boilerplate
24
23
```
25
24
26
25
Follow instructions at the prompt to create your project:
@@ -36,30 +35,40 @@ Follow instructions at the prompt to create your project:
36
35
### Run server
37
36
38
37
```bash
39
-
$ yarn dev
38
+
yarn dev
40
39
```
41
40
42
41
Open your favorite text editor and start coding!
43
42
44
43
## Build for production
45
44
46
45
```bash
47
-
$ yarn build
46
+
yarn build
48
47
```
49
48
50
49
Build files will end up in `/dist`.
51
50
52
51
## Contributing
53
52
54
53
If you want to add a feature, fix a bug or propose a change, please feel free to
55
-
[submit an issue](https://github.com/michelegera/create-tailwindcss-boilerplate/issues/new) or [open a pull request](https://github.com/michelegera/create-tailwindcss-boilerplate/compare).
54
+
[submit an issue][issue] or [open a pull request][pr].
56
55
57
-
Thanks to [all the contributors](https://github.com/michelegera/create-tailwindcss-boilerplate/graphs/contributors)!
56
+
Thanks to [all the contributors][contributors]!
58
57
59
58
## Acknowledgments
60
59
61
60
This project piggybacks on the excellent [TailwindCSS + Parcel + PurgeCSS
0 commit comments