0.0.4 • Published 9 years ago

concat-js-from-json v0.0.4

Weekly downloads
9
License
MIT
Repository
github
Last release
9 years ago

Concat JS files from JSON Arrays

Simple tool to convert a JSON file with an array of JS file names onto a single concatenated JS file.

Multiple JSON files will result in multiple js files.

var concatenator = require('concat-js-from-json');

gulp.src('path/to/js/*.json')
	.pipe(concatenator())
	.pipe(gulp.dest('public/js/'));

main.json

[
	"file1.js",
	"file2.js",
	"file3.js"
]

This will generate a main.js file containing the file1.js, file2.js and file3.js content, following the order.

License

concat-js-from-json is open-sourced software licensed under the MIT license