Package Exports
- parse-import
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 (parse-import) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
parse-import 
Parse CSS @import
statements.
Getting started
- npm:
npm install parse-import
- component:
component install kevva/parse-import
- bower:
bower install parse-import
Examples
var parseImport = require('parse-import');
parseImport('@import "test/foo.css" (min-width: 25em)');
// => { path: 'test/foo.css', condition: '(min-width: 25em)', rule: '@import "test/foo.css" (min-width: 25em)' }