How know if the Angular compiled /dist match with the source code in /src?

145 Views Asked by At

I have a compiled 'dist' folder and I want to know if it matches with the source code or is a different version. How can I do it?

1

There are 1 best solutions below

0
H3llskrieg On BEST ANSWER

Hacky solution would be to copy the dist folder into a git project, commit that folder, recompile copy that into the git folder and do a diff. If there is no diff it was from the source.