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
+25-1
Original file line number
Diff line number
Diff line change
@@ -15,12 +15,36 @@ Here is a screen grab of how it looks.
15
15
16
16
## :gift: Installation
17
17
18
-
Scaffold a new project of your choice then simply run,
18
+
Scaffold a new project of your choice of framework, then simply run,
19
19
20
20
```sh
21
21
npx twify init
22
22
```
23
23
24
+
### Command Options
25
+
26
+
Other than `--help` you can also do more.
27
+
28
+
#### Preserve Existing CSS
29
+
30
+
By default, twify will replace your existing CSS and only keep Tailwind. But if you want to preserve the existing CSS you can use the `-p, --preserve` flag.
31
+
32
+
```sh
33
+
npx twify init -p
34
+
# OR
35
+
npx twify init --preserve
36
+
```
37
+
38
+
#### Force Package Manager for Installation
39
+
40
+
By default, twify will try to guess the Package Manager for installing dependencies in your project but if you want to force your standard or you don't want to take any chances you can use the `-i, --installer` option.
0 commit comments