From d0d9c864d2853ddf7d0ceda9142855490a2d79c3 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Mon, 16 Dec 2024 20:15:39 -0800 Subject: [PATCH] internal: Mark as publishable. --- crates/file-group/Cargo.toml | 5 +++-- crates/project/Cargo.toml | 11 ++++++----- crates/task/Cargo.toml | 7 ++++--- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/crates/file-group/Cargo.toml b/crates/file-group/Cargo.toml index 3ad954d436..1e8b6c06c3 100644 --- a/crates/file-group/Cargo.toml +++ b/crates/file-group/Cargo.toml @@ -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 } diff --git a/crates/project/Cargo.toml b/crates/project/Cargo.toml index aa6ad0cde3..a9d78d6af3 100644 --- a/crates/project/Cargo.toml +++ b/crates/project/Cargo.toml @@ -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 } diff --git a/crates/task/Cargo.toml b/crates/task/Cargo.toml index 3279522253..86f5317438 100644 --- a/crates/task/Cargo.toml +++ b/crates/task/Cargo.toml @@ -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 }