0
Bernard created
Hi,
Could you tell me please why the nested file min.js is ignored for git :
The problem is when i modified this file it won't upload in Azure devops Repository and i must copy/paste always the main js file into the min.js to make everything work . It seems that the min.js file are called first Should I change git parameters on these files for integrate when sending in azure devops repository? Thks
2 Answer(s)
-
0
Hi @Bernard
You shouldn't modify these files because these are auto generated files and generated when you run
npm run create-bundles
command. You need to modify non-minified file and runnpm run create-bundles
command to generate minified files. -
0
Hi Thks for answer 🙂