Skip to content

Commit a6b1280

Browse files
committed
docs: add
1 parent de12261 commit a6b1280

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
coverage/
3+
tmp/
4+
npm-debug.log*
5+
.DS_Store

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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
13+
const sheetify = require('sheetify')
14+
const path = require('path')
15+
16+
const opts = {
17+
use: [ [ 'sheetify-cssnext', { sourcemap: false } ] ],
18+
basedir: __dirname
19+
}
20+
21+
sheetify(path.join(__dirname, 'index.css'), opts)
22+
.pipe(process.stdout)
23+
```
24+
25+
## See Also
26+
- [cssnext][13]
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/wayfarer-www/master.svg?style=flat-square
35+
[5]: https://travis-ci.org/yoshuawuyts/wayfarer-www
36+
[6]: https://img.shields.io/codecov/c/github/yoshuawuyts/wayfarer-www/master.svg?style=flat-square
37+
[7]: https://codecov.io/github/yoshuawuyts/wayfarer-www
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+
[12]: https://github.com/sheetify/sheetify

0 commit comments

Comments
 (0)