postcss-simple-url
v0.1.6
Published
PostCSS plugin to rebase urls from imports to make them work nicely with Webpack v2.
Downloads
87
Maintainers
Readme
PostCSS Simple URL
PostCSS plugin for loading/including other files (transform @import
rules by inlining content) and quering/referring assets (referred in url()
functions).
Installation
$ npm install postcss-simple-url
Usage
// dependencies
var fs = require("fs")
var postcss = require("postcss")
var url = require("postcss-simple-url")
// css to be processed
var css = fs.readFileSync("input.css", "utf8")
// process css
var output = postcss()
.use(url())
.process(css, {
from: "src/stylesheet/index.css",
to: "dist/index.css"
})
.css
Checkout tests for examples.
Contributing
- Pull requests and Stars are always welcome.
- For bugs and feature requests, please create an issue.
- Pull requests must be accompanied by passing automated tests (
$ npm test
).
License
Copyright
Copyright 2016-2017Sebastian Software GmbH