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-files
yarn add pull-concat-files
Usage
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-files
for reading and writing pull-stream filespull-bundle
for bundle your whole projectpull-bundle-js
for bundling with browserify
Maintained by Jamen Marz (See on Twitter and GitHub for questions & updates)