Skip to content

Commit

Permalink
internal: Mark as publishable.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Dec 17, 2024
1 parent db82ac2 commit d0d9c86
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
5 changes: 3 additions & 2 deletions crates/file-group/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ license = "MIT"
description = "File groups and collections."
homepage = "https://moonrepo.dev/moon"
repository = "https://github.com/moonrepo/moon"
publish = true

[dependencies]
moon_common = { path = "../common" }
moon_config = { path = "../config" }
moon_common = { version = "0.0.9", path = "../common" }
moon_config = { version = "0.0.11", path = "../config" }
common-path = "1.0.0"
miette = { workspace = true }
once_cell = { workspace = true }
Expand Down
11 changes: 6 additions & 5 deletions crates/project/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@ name = "moon_project"
version = "0.0.2"
edition = "2021"
license = "MIT"
description = "A project (app, lib, etc) in moon."
description = "A project in moon."
homepage = "https://moonrepo.dev/moon"
repository = "https://github.com/moonrepo/moon"
publish = true

[dependencies]
moon_common = { path = "../common" }
moon_config = { path = "../config" }
moon_file_group = { path = "../file-group" }
moon_task = { path = "../task" }
moon_common = { version = "0.0.9", path = "../common" }
moon_config = { version = "0.0.11", path = "../config" }
moon_file_group = { version = "0.0.2", path = "../file-group" }
moon_task = { version = "0.0.2", path = "../task" }
miette = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
Expand Down
7 changes: 4 additions & 3 deletions crates/task/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ license = "MIT"
description = "A task within a project."
homepage = "https://moonrepo.dev/moon"
repository = "https://github.com/moonrepo/moon"
publish = true

[dependencies]
moon_common = { path = "../common" }
moon_config = { path = "../config" }
moon_target = { path = "../target" }
moon_common = { version = "0.0.9", path = "../common" }
moon_config = { version = "0.0.11", path = "../config" }
moon_target = { version = "0.0.8", path = "../target" }
miette = { workspace = true }
rustc-hash = { workspace = true }
serde = { workspace = true }
Expand Down

0 comments on commit d0d9c86

Please sign in to comment.