Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/stackcss/sheetify-cssnext

cssnext transform for sheetify. Use tomorrow's CSS syntax, today
https://github.com/stackcss/sheetify-cssnext

cssnext sheetify

Last synced: about 1 month ago
JSON representation

cssnext transform for sheetify. Use tomorrow's CSS syntax, today

Awesome Lists containing this project

README

        

# sheetify-cssnext [![stability][0]][1]
[![build status][4]][5] [![test coverage][6]][7] [![js-standard-style][10]][11]

[postcss-preset-env][12] transform for [sheetify][13]. Use tomorrow's CSS syntax, today.

## Installation
```sh
$ npm install sheetify-cssnext
```

## Usage
```js
const sheetify = require('sheetify/stream')
const path = require('path')

const opts = {
transform: [ [ 'sheetify-cssnext', { sourcemap: false } ] ],
basedir: __dirname
}

sheetify(path.join(__dirname, 'index.css'), opts)
.pipe(process.stdout)
```

## See Also
- [postcss-preset-env][12]
- [sheetify][13]

## License
[MIT](https://tldrlegal.com/license/mit-license)

[0]: https://img.shields.io/badge/stability-experimental-orange.svg?style=flat-square
[1]: https://nodejs.org/api/documentation.html#documentation_stability_index
[4]: https://img.shields.io/travis/stackcss/sheetify-cssnext/master.svg?style=flat-square
[5]: https://travis-ci.org/stackcss/sheetify-cssnext
[6]: https://img.shields.io/codecov/c/github/stackcss/sheetify-cssnext/master.svg?style=flat-square
[7]: https://codecov.io/github/stackcss/sheetify-cssnext
[10]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square
[11]: https://github.com/feross/standard
[12]: https://github.com/csstools/postcss-preset-env
[13]: https://github.com/stackcss/sheetify