Force Azure to reinstall all dependencies

Question

How do I force Azure to reinstall all dependencies?

Background

Azure failed to install from original control due to an error in the bower file. Angular needed to be allowed for a specific version. I selected the wrong version causing errors in the application. Azure has changed these changes correctly.

I found the correct version, updated the permission in the bower file, and confirmed everything was working fine locally after removing bower_components and reinstalling with bower install

.

Problem

Using Azure Interactive Visual Studio, I can see that the bower file did indeed update to the correct resolution version, but it did not update the Angular bower_component version.

enter image description here

Attempts to solve

  • I don't need the added dependency, hoping it will reinstall all dependencies . He only installed a new dependency.
  • Disabled source control from GitHub, then untethered. It worked, but I don't have access to a production site deployment to try it out.
  • Changed Angular version to match permission version. An invalid previous version is still supported.
+3


source to share


1 answer


In bower.json add:

rm -rf public/bower_components/ 

      



before installing panel components.

0


source







All Articles