https://github.com/remko/concatsources
Concatenate JavaScript or CSS files
https://github.com/remko/concatsources
Last synced: 10 months ago
JSON representation
Concatenate JavaScript or CSS files
- Host: GitHub
- URL: https://github.com/remko/concatsources
- Owner: remko
- Created: 2016-02-06T13:58:02.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-06T14:17:35.000Z (over 10 years ago)
- Last Synced: 2023-04-11T12:36:28.755Z (about 3 years ago)
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `concatsources`: Concatenate JavaScript or CSS files
A minimalistic Python script (with no dependencies) to concatenate `.js` or
`.css` files, and include the source map.
## Usage
To concatenate multiple `.js` files into one file:
concatsources.py --output=out.js in1.js in2.js in3.js:
To also include the full source of the `.js` files in `out.js`:
concatsources.py --source-map-include-sources --output=out.js in1.js in2.js in3.js