Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/stackcss/sheetify-cssnext
- Owner: stackcss
- Created: 2015-11-01T19:00:33.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-09-19T11:23:58.000Z (over 4 years ago)
- Last Synced: 2024-11-11T21:47:41.634Z (about 2 months ago)
- Topics: cssnext, sheetify
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 13
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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