AhMyth 9000392778 beta version 8 years ago
..
.npmignore 9000392778 beta version 8 years ago
.travis.yml 9000392778 beta version 8 years ago
LICENSE 9000392778 beta version 8 years ago
README.md 9000392778 beta version 8 years ago
index.js 9000392778 beta version 8 years ago
package.json 9000392778 beta version 8 years ago

README.md

rework-plugin-url

Build Status

Map url() calls. Replace all url()s using a given function.

var css = rework(read(css))
  .use(rework.url(function(url){
    return 'http://example.com' + url;
  }))
  .toString()
body {
  background: url(/images/bg.png);
}

yields:

body {
  background: url(http://example.com/images/bg.png);
}