Skip to content

Commit db5f0f7

Browse files
refactor(Mountain): Simplify binary and product names
Rename the Mountain binary, library, and default-run targets from the verbose development profile name to simply "Mountain". This follows the project's PascalCase naming convention and removes the debug build artifact naming. In tauri.conf.json, simplify the identifier from the lengthy development-specific string to "land.editor.binary" and the productName from the long debug name to "Mountain". Also remove the duplicate "Binary/node" entry from externalBin. These changes clean up the build configuration for proper release builds while maintaining the same functionality.
1 parent f2b5c34 commit db5f0f7

2 files changed

Lines changed: 7 additions & 8 deletions

File tree

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[[bin]]
2-
name = "DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain"
2+
name = "Mountain"
33
path = "Source/Library.rs"
44

55
[build-dependencies]
@@ -149,7 +149,7 @@ TierOpenExternalLayer4 = []
149149
TierExtensionScanParallel = []
150150

151151
[lib]
152-
name = "DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain"
152+
name = "Mountain"
153153
path = "Source/Library.rs"
154154
crate-type = ["lib", "staticlib"]
155155

@@ -159,11 +159,11 @@ autobenches = false
159159
autobins = false
160160
autoexamples = false
161161
autotests = false
162-
default-run = "DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain"
162+
default-run = "Mountain"
163163
description = "Mountain ⛰️"
164164
edition = "2024"
165165
license-file = "LICENSE"
166-
name = "DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain"
166+
name = "Mountain"
167167
publish = false
168168
include = [
169169
"build.rs",

tauri.conf.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070
"copyright": "PlayForm",
7171
"createUpdaterArtifacts": false,
7272
"externalBin": [
73-
"Binary/node",
7473
"Binary/node"
7574
],
7675
"fileAssociations": [],
@@ -144,7 +143,7 @@
144143
}
145144
}
146145
},
147-
"identifier": "land.editor.binary.development.node.environment.microsoft.vscode.dependency.node.22.bundle.clean.debug.electron.profile.esbuild.compiler.mountain",
148-
"productName": "DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain",
146+
"identifier": "land.editor.binary",
147+
"productName": "Mountain",
149148
"version": "0.0.1"
150-
}
149+
}

0 commit comments

Comments
 (0)