summaryrefslogtreecommitdiff
path: root/cli/lockfile.rs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-09-25 08:31:17 +1000
committerGitHub <noreply@github.com>2020-09-25 08:31:17 +1000
commitc489589e2b220317609689fbb1d0aec06191c7e9 (patch)
tree43d083abad7e900ebd2c7fd84160305aa6ebc5ed /cli/lockfile.rs
parent7726cfb93243932a07107f67b87032adb40abdc0 (diff)
refactor: new module graph used for no check (#7621)
Diffstat (limited to 'cli/lockfile.rs')
-rw-r--r--cli/lockfile.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/lockfile.rs b/cli/lockfile.rs
index 266975ba7..74e8dcde2 100644
--- a/cli/lockfile.rs
+++ b/cli/lockfile.rs
@@ -5,6 +5,7 @@ use deno_core::serde_json::json;
use std::collections::BTreeMap;
use std::io::Result;
+#[derive(Debug, Clone)]
pub struct Lockfile {
write: bool,
map: BTreeMap<String, String>,