IBM / ibm-cloud-functions-serverless-iot-openfridge

WARNING: This repository is no longer maintained :warning: This repository will not be updated. The repository will be kept available in read-only mode. See https://developer.ibm.com/code/patterns/ for the latest patterns.
Apache License 2.0
20 stars 22 forks source link

/feeds/cf/mqtt/package.json needs to be updated #49

Closed vcailly closed 7 years ago

vcailly commented 7 years ago

The current package.json, file specifies "engines": { "npm": "3", "node": "4.4.2" }

When you push the application on Bluemix, it fails with the following error

DEPENDENCY MISSING IN MANIFEST: node 4.4.2 It looks like you're trying to use node 4.4.2. Unfortunately, that version of node is not supported by this buildpack. The versions of node supported in this buildpack are:

I made the following modification in my package.json file to fix this issue

"engines": { "npm": ">4.1.2", "node": ">6.1.0" }