I am working on a project and I am not using any nodejs or npm package, But in the Production site, I want to upload the "bundled and minified javascript" file.
Is there any way to bundle a javascript file without using npm or nodejs?
update: I am using Apache
as a web-server. It's a simple static website, but I have 5 JS files. I want to bundle them all in one just like how webpack does with the bundling of all files and combining them all in one with minification.
Thanks