UNPKG

1.31 kBMarkdownView Raw
1# sheetify-cssnext [![stability][0]][1]
2[![build status][4]][5] [![test coverage][6]][7] [![js-standard-style][10]][11]
3
4[cssnext][12] transform for [sheetify][13]. Use tomorrow's CSS syntax, today.
5
6## Installation
7```sh
8$ npm install sheetify-cssnext
9```
10
11## Usage
12```js
13const sheetify = require('sheetify')
14const path = require('path')
15
16const opts = {
17 use: [ [ 'sheetify-cssnext', { sourcemap: false } ] ],
18 basedir: __dirname
19}
20
21sheetify(path.join(__dirname, 'index.css'), opts)
22 .pipe(process.stdout)
23```
24
25## See Also
26- [cssnext][12]
27- [sheetify][13]
28
29## License
30[MIT](https://tldrlegal.com/license/mit-license)
31
32[0]: https://img.shields.io/badge/stability-experimental-orange.svg?style=flat-square
33[1]: https://nodejs.org/api/documentation.html#documentation_stability_index
34[4]: https://img.shields.io/travis/yoshuawuyts/sheetify-cssnext/master.svg?style=flat-square
35[5]: https://travis-ci.org/yoshuawuyts/sheetify-cssnext
36[6]: https://img.shields.io/codecov/c/github/yoshuawuyts/sheetify-cssnext/master.svg?style=flat-square
37[7]: https://codecov.io/github/yoshuawuyts/sheetify-cssnext
38[10]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square
39[11]: https://github.com/feross/standard
40[12]: https://github.com/cssnext/cssnext
41[13]: https://github.com/sheetify/sheetify