# postcss-verbosify

> Verbosify atomic classes

Latest version **1.0.0** (published 2017-11-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install postcss-verbosify
pnpm add postcss-verbosify
yarn add postcss-verbosify
bun add postcss-verbosify
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2017-11-02 |
| First published | 2017-11-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 (+6 in 1 direct dependencies) |
| Install scripts | no |
| Author | John Otander |
| Maintainers | johno |
| Keywords | class, css, verbose, postcss, postcss-plugin |

## Links

- npm: https://www.npmjs.com/package/postcss-verbosify
- Repository: https://github.com/johnotander/postcss-verbosify
- Homepage: https://github.com/johnotander/postcss-verbosify#readme
- Issues: https://github.com/johnotander/postcss-verbosify/issues
- npm.io page: https://npm.io/package/postcss-verbosify

## Dependencies (4)

- [postcss](https://npm.io/package/postcss.md) ^5.0.19
- [camelcase](https://npm.io/package/camelcase.md) ^4.1.0
- [is-present](https://npm.io/package/is-present.md) ^1.0.0
- [uppercamelcase](https://npm.io/package/uppercamelcase.md) ^3.0.0

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2017-11-02

## README

# postcss-verbosify [![Build Status](https://secure.travis-ci.org/johnotander/postcss-verbosify.svg?branch=master)](https://travis-ci.org/johnotander/postcss-verbosify) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard)

Make atomic classes more verbose based off of a configuration.
Used to automate the creation of `tachyons-verbose`.

## Installation

```bash
npm install --save postcss-verbosify
```

## Usage

```javascript
var postcss = require('postcss')
var verbosify = require('postcss-verbosify')

const config = {
  style: 'kebab',
  properties: {
    'vertical-align': true,
    'text-transform': false
  }
}

postcss([ verbosify(config) ]).process(myCss).css
```

#### Input

```css
.bg-tomato {
  background-color: tomato;
}
```

#### Output

```css
.background-tomato {
  background-color: tomato;
}
```

## License

MIT

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Crafted with <3 by John Otander ([@4lpine](https://twitter.com/4lpine)).

***

> This package was initially generated with [yeoman](http://yeoman.io) and the [p generator](https://github.com/johnotander/generator-p.git).

---
_Source: https://npm.io/package/postcss-verbosify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
