Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jaredly/stylecleanup

Find & fix unused styles in react native and aphrodite
https://github.com/jaredly/stylecleanup

Last synced: 14 days ago
JSON representation

Find & fix unused styles in react native and aphrodite

Awesome Lists containing this project

README

        

# Style Cleanup

Wouldn't it be nice if you could automatically find & remove unused React
Native and Aphrodite style declarations?

`stylecleanup` is here to help!

```bash
$ yarn global add stylecleanup
# or
$ npm install -g stylecleanup
```

![screen capture demo](docs/screencap.gif)

## Usage

```
Usage: stylecleanup [command] some/file/to/check.js
command: one of 'check', 'fix', 'fix-force'
globs are also supported, e.g.

stylecleanup check './src/**/*.js'

check: find & report missing & unused styles
fix: remove all unused styles, but skip styles that *might* be used, but
can't be verified because e.g. the stylesheet variable is passed around,
or there's a computed property access. If you do 'styles[something]' it
might be accessing anything, so we can't know for sure that apparently
unused styles are actually unused.
fix-force: remove all unnused styles, and all 'potentially' unused styles
```

## Contributing

Does this sound interesting to you? Do you want it to do something it doesn't?
Please jump in! I don't have a ton of opinions about this project, so if
there's a change you think should happen, I'm probably down for it. Just file
an issue or make a pull request!