Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ http_client = { workspace = true }
semver = "1.0"
serde = { workspace = true }
serde_json = { workspace = true }
warp_core = { workspace = true }
galaxy_core = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
async-fs = { workspace = true }
+2 -2
View File
@@ -137,7 +137,7 @@ impl NodeDistribution {
pub fn node_installation_dir() -> Result<PathBuf> {
let dist = NodeDistribution::current()?;
let folder_name = dist.folder_name(NODE_VERSION);
Ok(warp_core::paths::data_dir().join("node").join(folder_name))
Ok(galaxy_core::paths::data_dir().join("node").join(folder_name))
}
/// Returns the path to the installed node binary.
@@ -175,7 +175,7 @@ pub async fn install_npm(client: &http_client::Client) -> Result<PathBuf> {
let version = NODE_VERSION;
let folder_name = dist.folder_name(version);
let node_containing_dir = warp_core::paths::data_dir().join("node");
let node_containing_dir = galaxy_core::paths::data_dir().join("node");
let node_dir = node_containing_dir.join(&folder_name);
let node_binary = node_dir.join(NODE_BINARY_PATH);