0.0.4 • Published 7 years ago

rework-import-external v0.0.4

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

rework-import-external Build Status

A rework plugin to download and inline CSS for external source via @import

Install

$ npm install --save rework-import-external

Usage

const rework = require('rework');
const plugin = require('rework-import-external');

let css = rework(`
@import "style1.css" (min-width: 100px);
@import "/root/path/style2.css";
@import "../style3.css";
`, {
  // base URL
  source: 'http://some.domain/base/path/'
}).use(plugin({}, (err, ast) => {
  css.toString()
}))

License

MIT © Andriy Rakhnin