Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paganotoni/tailo
Tailo is a wrapper that takes care of downloading the TailwindCLI and run it.
https://github.com/paganotoni/tailo
Last synced: 3 months ago
JSON representation
Tailo is a wrapper that takes care of downloading the TailwindCLI and run it.
- Host: GitHub
- URL: https://github.com/paganotoni/tailo
- Owner: paganotoni
- License: other
- Created: 2023-08-04T16:00:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-19T20:55:09.000Z (6 months ago)
- Last Synced: 2024-10-09T06:22:50.604Z (4 months ago)
- Language: Go
- Homepage:
- Size: 14.6 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - paganotoni/tailo - Tailo is a wrapper that takes care of downloading the TailwindCLI and run it. (Go)
README
# Tailo
Tailo is a Go wrapper for the common operations with the TailwindCSS binary. It is intended to automate the process of installing the TailwindCSS binary, running it, and cleaning up the generated files.
## Setup Command
The setup command is an easy way to invoke tailo from your application without creating a dependency on this package.```sh
go run github.com/paganotoni/tailo/cmd/setup@latest // Using Latest Tailwind// Or Using a specific version
go run github.com/paganotoni/tailo/cmd/setup@latest -version=v3.4.6
```## Build Command
Like the Setup command the Build Command allows to specify the version of Tailwind to be used.```sh
go run github.com/paganotoni/tailo/cmd/build@latest -version=v3.4.6
```