Package Exports
- co-assets-compiler
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 (co-assets-compiler) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Assets compiler for CompoundJS
This package adds middleware for assets compilation. Supported asset types:
- less
- stylus
- sass
- coffee-script
Installation
Step 1. install using npm:
npm install co-assets-compiler --save
Step 2. add co-assets-compiler
line to config/autoload.js
, for example:
module.exports = function (compound) {
return [
'ejs-ext',
'jugglingdb',
'seedjs',
'co-assets-compiler'
].map(require);
};