Hi,
Currently for software releases I go through the following process:
1. jspm unbundle.
2. Delete the old bundles from revision control.
3. For each bundle type that was unbundled (one for each JS app type), run jspm bundle app/type app_type_release_version_x_bundle.js --inject
4. Commit all new bundles for deployment.
I would like to be able improve this process and automate it sometime in the future soon, which is fine, I can do so.
But would be nice so that I could only re-bundle the modules and their dependencies when they have changed since the last bundling.
IE jspm unbundle removes all bundles, so I have to recreate them all. And now clients will have to download new app bundles on each release even though there was nothing that changed.
Maybe I should be approaching this in a different way?
Cheers and thanks any help :)