flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
50
VISUALIZACION/node_modules/postcss-unique-selectors/README.md
generated
vendored
Executable file
50
VISUALIZACION/node_modules/postcss-unique-selectors/README.md
generated
vendored
Executable file
|
|
@ -0,0 +1,50 @@
|
|||
# [postcss][postcss]-unique-selectors [][ci] [][npm] [][deps]
|
||||
|
||||
> Ensure CSS selectors are unique.
|
||||
|
||||
## Install
|
||||
|
||||
With [npm](https://npmjs.org/package/postcss-unique-selectors) do:
|
||||
|
||||
```
|
||||
npm install postcss-unique-selectors --save
|
||||
```
|
||||
|
||||
## Example
|
||||
|
||||
Selectors are sorted naturally, and deduplicated:
|
||||
|
||||
### Input
|
||||
|
||||
```css
|
||||
h1,h3,h2,h1 {
|
||||
color: red
|
||||
}
|
||||
```
|
||||
|
||||
### Output
|
||||
|
||||
```css
|
||||
h1,h2,h3 {
|
||||
color: red
|
||||
}
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
|
||||
examples for your environment.
|
||||
|
||||
## Contributing
|
||||
|
||||
Pull requests are welcome. If you add functionality, then please add unit tests
|
||||
to cover it.
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Ben Briggs](http://beneb.info)
|
||||
|
||||
[ci]: https://travis-ci.org/ben-eb/postcss-unique-selectors
|
||||
[deps]: https://gemnasium.com/ben-eb/postcss-unique-selectors
|
||||
[npm]: http://badge.fury.io/js/postcss-unique-selectors
|
||||
[postcss]: https://github.com/postcss/postcss
|
||||
Loading…
Add table
Add a link
Reference in a new issue