Package Exports
- pull-concat-files
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 (pull-concat-files) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
pull-concat-files
Concat pull-stream files into one
Simple file -> file concat. Consumes all files in the stream, use something like pull.filter or globs beforehand.
pull(
read(__dirname + '/src/**/*.css'),
concat('app.css'),
write(__dirname + '/out/')
)Install
npm install --save pull-concat-filesyarn add pull-concat-filesUsage
concat(path, sep?)
Concats all files in the stream into one file under path.
pull
read('src/**/*.css'),
concat('app.css'),
write('out/')
)Also see
pull-filesfor reading and writing pull-stream filespull-bundlefor bundle your whole projectpull-bundle-jsfor bundling with browserify
Maintained by Jamen Marz (See on Twitter and GitHub for questions & updates)