For some reason, the command yarn
is modifying the file yarn.lock
with a new property to every dependency: integrity
.
Git diff:
+integrity sha1-zgBCgEX7t9AxwWp7+DV4nxU2arI=
I couldn't find documentation about it so my question is - What is it?
sha512sum <tarball> | awk '{ print $1 }' | xxd -r -p | base64 -w 88
– Bracelet