Package Exports
- rework-inline
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (rework-inline) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
rework-inline 
Inline stylesheets using @import.
Getting started
Install with npm: npm install rework-inline
Examples
@import "foo.css" (min-width: 25em);
body {
background: black;
}yields:
@media (min-width: 25em) {
body {
background: red;
}
h1 {
color: grey;
}
}
body {
background: black;
}API
inline(cwd)
Import stylesheets using @import and an optional media query. Pass in an array
of paths to cwd in which to search for files.