Is it possible to configure the js bundle filenames generated by CLI? "ng build --prod" outputs files with names like this to the dist dir:
- inline.cb2534b55477f6dd88f2.bundle.js
- main.81e08a23f86e34690c6c.bundle.js
- polyfills.b1706c7adb46ed3216b9.bundle.js
- vendor.c60c1fef7e91c2217820.bundle.js
I have a requirement to use the app's current build number as the second part of the filename. So if the app build number is 1.15.2 then the dist js filenames would look like this: inline.1.15.2.bundle.js
Do you know if "ng build --prod" supports a flag to configure the second part of the output filename? Or will I most likely need to create some type of custom post-build routine which programatically makes this update?