I have a backbone app with over 50 small JavaScript files. Now I want to put all those in one single file, but it should still be readable, so:
Is there a tool for combining JavaScript files without minifying or uglyfying them?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
cat(standard on UNIX-like systems).You may run into problems if you have any scripts that do not end with a new line while depending on semi-colon insertion for that line.