Skip to content

Commit

Permalink
chore: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
egoist committed Mar 21, 2020
1 parent 76d4db6 commit 7689bf2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# tailwindcss-browser
# tailwindcss-standalone

> Use `tailwindcss` to compile CSS in browser directly. This is not intended for production use, however it can be used to demonstrate TailwindCSS features in browser.
> Standalone build of `tailwindcss` that runs in browser.
## Usage

```html
<script src="https://unpkg.com/tailwindcss-browser"></script>
<script src="https://unpkg.com/tailwindcss-standalone"></script>

<script>
tailwindcss({
Expand All @@ -28,6 +28,12 @@ body {
</script>
```

You can also use it with bundler:

```js
import tailwindcss from 'tailwindcss-standalone'
```

## License

MIT.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "tailwindcss-browser",
"name": "tailwindcss-standalone",
"version": "0.0.0",
"main": "dist/index.js",
"files": ["dist"],
Expand Down

0 comments on commit 7689bf2

Please sign in to comment.