NPM install warnings [low priority]
Created by: davemevans
Now that package.json is in /build (and README.md is still in root), npm install
gives:
npm WARN package.json dashjs@1.1.1 No description
npm WARN package.json dashjs@1.1.1 No README data
It's not really a problem, but it would be nicer if it didn't give warnings on installation.
The solution is either:
- make sure README.md is in the same folder as package.json
- add
"readme"
attribute to package.json with value"<path-to-README.md>"
description
is not required if either of the above is satisfied.
Also, should version
reflect the current release version?