Skip to content

Latest commit

 

History

10 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Concat JS files from a JSON array

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages