MIF_E31212289/node_modules/concat
lutfahimayatus 0e50ebf80c first commit 2024-07-01 11:18:03 +07:00
..
bin first commit 2024-07-01 11:18:03 +07:00
node_modules/commander first commit 2024-07-01 11:18:03 +07:00
test first commit 2024-07-01 11:18:03 +07:00
.npmignore first commit 2024-07-01 11:18:03 +07:00
.travis.yml first commit 2024-07-01 11:18:03 +07:00
LICENSE first commit 2024-07-01 11:18:03 +07:00
README.md first commit 2024-07-01 11:18:03 +07:00
index.js first commit 2024-07-01 11:18:03 +07:00
index.ts first commit 2024-07-01 11:18:03 +07:00
package.json first commit 2024-07-01 11:18:03 +07:00
tsconfig.json first commit 2024-07-01 11:18:03 +07:00

README.md

Concat

Build Status

Concatenate multiple files

Usage

Usage: concat [options]

concatenate multiple files

Options:
    -h, --help                   output usage information
    -V, --version                output the version number
    -o, --output <file>          output file

examples:

concat -o output.css ./1.css ./2.css ./3.css

You can also use it from node:

const concat = require('concat');

concat([file1, file2, file3]).then(result => console.log(result))

// or
concat([file1, file2, file3], outputFile)

Tests

To run tests you simply need to do:

npm run test

Like it?

this repo

License

MIT

Copyright (c) 2017 Konstantin Gorodinskiy