Skip to content

Commit 31c82e8

Browse files
committed
tailwind 3.4.0 and update readme
1 parent 704ec9c commit 31c82e8

File tree

4 files changed

+3685
-2639
lines changed

4 files changed

+3685
-2639
lines changed

README.MD

+24-24
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![GitHub release](https://img.shields.io/github/release/jeffreyvr/tailpress?include_prereleases=&sort=semver)](https://github.com/jeffreyvr/tailpress/releases/)
44
[![License](https://img.shields.io/badge/License-MIT-blue)](#license)
5-
[![issues - tailpress](https://img.shields.io/github/issues/jeffreyvr/tailpress)](https://github.com/jeffreyvr/tailpress/issues)
65

76
# Introduction
87

@@ -20,25 +19,16 @@ composer global require jeffreyvanrossum/tailpress-installer
2019
tailpress new example-theme
2120
```
2221

23-
*If you haven't already, make sure to place the `~/.composer/vendor/bin` directory in your `PATH` so the tailpress executable is found when you run the tailpress command in your terminal.*
22+
*If the tailpress command is not found, make sure to place Composer's global vendor bin in your `$PATH` ([see](#command-tailpress-not-found)).*
2423

25-
You can optionally set the theme name.
24+
Flags you can pass when using the installer:
25+
- Set a theme name `--name="Example Theme"`
26+
- Choose your compiler, mix or esbuild: `--compiler="esbuild"`
27+
- Initialize a git repository `--git`
28+
- Set the git branch name `--branch="main"`
2629

27-
```bash
28-
tailpress new example-theme --name="Example Theme"
29-
```
30-
31-
By default, TailPress uses Laravel Mix for compiling. Rather use Esbuild?
32-
33-
```bash
34-
tailpress new example-theme --compiler="esbuild"
35-
```
36-
37-
You can also initialize a new Git repository (branch defaults to `main`):
38-
39-
```bash
40-
tailpress new example-theme --name="Example Theme" --git --branch="main"
41-
```
30+
If you choose to install WordPress through the installer, these flags might be of interest as well:
31+
`--dbname`, `--dbuser`, `--dbpass` and `--dbhost`.
4232

4333
Once your theme is ready, don't forget to cd into the directory.
4434

@@ -67,20 +57,30 @@ There are several NPM scripts available. You'll find the full list in the `packa
6757
| dev | Creates a development build of app.js, app.css and editor-style.css. |
6858
| watch | Runs several watch scripts concurrently. |
6959

70-
## Block editor support
60+
## Tips
7161

72-
TailPress comes with support for the [block editor](https://wordpress.org/support/article/wordpress-editor/).
62+
### Styling within the block editor
7363

74-
A basic setup for `theme.json` is included. This also means that you need to at least use WordPress 5.8. If you wan't to support earlier WordPress versions, you can use an [older version](https://github.com/jeffreyvr/tailpress/tree/0.1.1) of TailPress instead.
64+
To make the editing experience within the block editor more in line with the front end styling, a `editor-style.css` is generated.
7565

76-
CSS-classes for alignment (full, wide etc.) are generated automatically. You can opt-out on this by removing the plugin from the `tailwind.config.js` file.
66+
### CSS classes generated by TailPress
7767

78-
To make the editing experience within the block editor more in line with the front end styling, a `editor-style.css` is generated.
68+
CSS classes for alignment (full, wide etc.) are generated automatically. You can opt-out on this by removing the plugin from the `tailwind.config.js` file.
7969

80-
### Define theme colors and font sizes
70+
### Customize colors
8171

8272
Several colors and font sizes are defined from the beginning. You can modify them in `theme.json`.
8373

74+
### Command `tailpress` not found
75+
76+
Make sure to place Composer's global vendor bin directory in your `$PATH` so the `tailpress` executable can be found by your system. This directory exists in different locations based on your operating system; however, some common locations include:
77+
78+
- macOS: `$HOME/.composer/vendor/bin`
79+
- Windows: `%USERPROFILE%\AppData\Roaming\Composer\vendor\bin`
80+
- GNU / Linux Distributions: `$HOME/.config/composer/vendor/bin or $HOME/.composer/vendor/bin`
81+
82+
You could also find the composer's global installation path by running `composer global about` and looking up from the first line.
83+
8484
## Links
8585

8686
* [TailPress website](https://tailpress.io)

0 commit comments

Comments
 (0)