UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

81 lines 2.9 kB
/** * **fastlane** - 🚀 The easiest way to automate building and releasing your iOS and Android apps * * @domain `fastlane.tools` * @programs `fastlane` * @version `2.228.0` (23 versions available) * @versions From newest version to oldest. * * @install `launchpad install fastlane` * @name `fastlane` * @dependencies `ruby-lang.org~3.2`, `rubygems.org` * @companions `cocoapods.org/xcodeproj` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.fastlane * // Or access via domain * const samePkg = pantry.fastlanetools * console.log(pkg === samePkg) // true * console.log(pkg.name) // "fastlane" * console.log(pkg.description) // "🚀 The easiest way to automate building and rel..." * console.log(pkg.programs) // ["fastlane"] * console.log(pkg.versions[0]) // "2.228.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/fastlane-tools.md * @see https://ts-pkgx.netlify.app/usage */ export declare const fastlanePackage: { /** * The display name of this package. */ name: 'fastlane'; /** * The canonical domain name for this package. */ domain: 'fastlane.tools'; /** * Brief description of what this package does. */ description: '🚀 The easiest way to automate building and releasing your iOS and Android apps'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fastlane.tools/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install fastlane'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['fastlane']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['cocoapods.org/xcodeproj']; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['ruby-lang.org~3.2', 'rubygems.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.228.0', '2.227.2', '2.227.1', '2.227.0', '2.226.0', '2.225.0', '2.224.0', '2.223.1', '2.223.0', '2.222.0', '2.221.1', '2.221.0', '2.220.0', '2.219.0', '2.218.0', '2.217.0', '2.216.0', '2.215.1', '2.215.0', '2.214.0', '2.213.0', '2.212.2', '2.212.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) fastlane -- $SHELL -i'; launchpadInstallCommand: 'launchpad install fastlane' }; export type FastlanePackage = typeof fastlanePackage