0

I am running an application at IBM Bluemix DevOps and while deploying I am getting this error:

this

App staging failed in the buildpack compile phase.

On checking logs I found this: Logs

How do I get rid of this problem?

Daisy_s
  • 109
  • 9
  • In the top right corner of your screenshot, click on the 4rth icon to view logs. – Ram Vennam Oct 26 '16 at 14:20
  • Can you provide a link to the Github project or sample application, if you are using one? – Hobert Bush III Oct 26 '16 at 16:17
  • @RamVennam Thanks Ram. I checked my log and have put a screenshot of it in my original question. Possible problem it says is :- Gulp may not be tracked in package.json !!! – Daisy_s Oct 27 '16 at 07:08
  • @HobertBushIII I am not following a particular sample but i am taking major references from this https://github.com/watson-developer-cloud/car-dashboard – Daisy_s Oct 27 '16 at 07:09

1 Answers1

0

You're trying to use a node npm module which you might not have declared as a dependency. Add gulp to your package.json as show in in the car-dashboard sample you are referencing.

Ram Vennam
  • 3,536
  • 1
  • 12
  • 19