Daniel-t / node-red-contrib-aws

A collection of Node-RED nodes for AWS.
Apache License 2.0
57 stars 59 forks source link

package.json has incorrect entry for DynamoDB #34

Closed knolleary closed 6 years ago

knolleary commented 6 years ago

Hi,

I was investigating why this node wasn't being listed on flows.nodered.org

The problem is your package.json lists the DynamoDB file as DynamoDB.js but the actual file is Dynamodb.js. That means the flow library believes your node is missing a file so it refuses to list it.

If you want it to get indexed, you'll need to either fix your package.json or rename the file to match what is in package.json.

Nick