JSPM

pull-concat-files

0.2.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q19543F

Concat pull-stream files into one

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


Maintained by Jamen Marz (See on Twitter and GitHub for questions & updates)