0.1.6 • Published 7 years ago

postcss-simple-url v0.1.6

Weekly downloads
13
License
MIT
Repository
github
Last release
7 years ago

PostCSS Simple URL Downloads Downloads Build Status Unix Build Status Windows Dependencies

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