UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.43 kB
/** * **xchtmlreport** - Xcode-like HTML report for Unit and UI Tests * * @domain `github.com/XCTestHTMLReport/XCTestHTMLReport` * @programs `xchtmlreport` * @version `2.5.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install xchtmlreport` * @name `xchtmlreport` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.xchtmlreport * // Or access via domain * const samePkg = pantry.githubcomxctesthtmlreportxctesthtmlreport * console.log(pkg === samePkg) // true * console.log(pkg.name) // "xchtmlreport" * console.log(pkg.description) // "Xcode-like HTML report for Unit and UI Tests" * console.log(pkg.programs) // ["xchtmlreport"] * console.log(pkg.versions[0]) // "2.5.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/XCTestHTMLReport/XCTestHTMLReport.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xchtmlreportPackage: { /** * The display name of this package. */ name: 'xchtmlreport'; /** * The canonical domain name for this package. */ domain: 'github.com/XCTestHTMLReport/XCTestHTMLReport'; /** * Brief description of what this package does. */ description: 'Xcode-like HTML report for Unit and UI Tests'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/XCTestHTMLReport/XCTestHTMLReport/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/XCTestHTMLReport/XCTestHTMLReport'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install xchtmlreport'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xchtmlreport']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.5.1', '2.5.0', '2.4.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) xchtmlreport -- $SHELL -i'; launchpadInstallCommand: 'launchpad install xchtmlreport' }; export type XchtmlreportPackage = typeof xchtmlreportPackage