node-inspector / v8-profiler

node bindings for the v8 profiler
BSD 2-Clause "Simplified" License
1.13k stars 134 forks source link

update scripts info & add ignore package-lock.json #127

Closed rickyes closed 6 years ago

ankon commented 6 years ago

Just ignoring package-lock.json is usually not enough: If you do a npm version now, npm will produce a package-lock.json, try to add it to git, and then fail (because it is ignored).

You should also add a .npmrc file with minimally this content:

package-lock=false

This prevents npm from creating the package-lock.json file.