@interopio/desktop-cli
Version:
CLI tool for setting up, building and packaging io.Connect Desktop projects
13 lines • 668 B
TypeScript
/**
* Renames an app bundle contents (not the bundle itself) to a new base name. This means
* - Updating the executable name inside as well
* - Updating the Info.plist file accordingly
* - Updating all Electron Helper apps in Contents/Frameworks to match the new base name (bundle name + executable + plist)
* - Copies the logo.icns file from Contents/assets/images to Contents/Resources
*
* @param appBundlePath Absolute path to YourApp.app
* @param newBaseName Desired base name (e.g., "JPM Connect")
*
*/
export declare function renameAppBundleContents(appBundlePath: string, newBaseName: string): Promise<void>;
//# sourceMappingURL=macOS.helper.d.ts.map