Skip to content

Commit

Permalink
refactor: Move lockfile to a separate crate (denoland#17503)
Browse files Browse the repository at this point in the history
Moves the lockfile implementation to a separate crate so other projects
like Deploy can use it as well.
  • Loading branch information
bartlomieju authored Jan 23, 2023
1 parent cd19231 commit bf237c6
Show file tree
Hide file tree
Showing 11 changed files with 663 additions and 608 deletions.
12 changes: 12 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ members = [
"ext/websocket",
"ext/webstorage",
"ext/napi",
"lockfile",
]
exclude = ["test_util/std/hash/_wasm"]

Expand All @@ -50,6 +51,7 @@ deno_runtime = { version = "0.93.0", path = "./runtime" }
napi_sym = { version = "0.15.0", path = "./cli/napi/sym" }
deno_bench_util = { version = "0.79.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = { version = "0.1.0", path = "./lockfile" }

# exts
deno_broadcast_channel = { version = "0.79.0", path = "./ext/broadcast_channel" }
Expand Down
1 change: 1 addition & 0 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ deno_doc = "0.52.0"
deno_emit = "0.13.0"
deno_graph = "0.41.0"
deno_lint = { version = "0.37.0", features = ["docs"] }
deno_lockfile.workspace = true
deno_runtime.workspace = true
deno_task_shell = "0.8.1"
napi_sym.workspace = true
Expand Down
Loading

0 comments on commit bf237c6

Please sign in to comment.