Lock file does not have any hashes of modules
Hello everyone. I need your help.
I'm trying to generate deno.lock by using command ↓ in Mac. (Deno 1.46.1)
It generates lockfiles without hashes.
(Like this. ↓)
But when I execute this command in a docker container, it generates hashes.
How can I generate lockfile with hashes in Mac?
P.S I tried with
--reload
, but the result was same.2 Replies
Ok, I got it.
When I ran with arg
--reload=npm:
, it generated a lock file with all hashes.
And after this command, Deno always generates a valid lock file with --reload
args. (it works without =:npm
arg)
I don't know what happened, but my troubles solved. thanks.Cc @dsherret in case this is not expected