@stacksjs/launchpad
Version:
Like Homebrew, but faster.
17 lines • 770 B
TypeScript
/**
* Custom installer for Meilisearch - downloads from GitHub releases
*/
export declare function installMeilisearch(installPath: string, requestedVersion?: string): Promise<string[]>;
/**
* Test if a PHP binary actually works (can run --version without dyld errors)
*/
export declare function testPhpBinary(phpPath: string): Promise<boolean>;
/**
* Build SQLite from source
*/
export declare function buildSqliteFromSource(installPath: string, requestedVersion?: string): Promise<string[]>;
/**
* Install only the dependencies of packages, not the packages themselves
* Useful for setting up build environments without installing the main package
*/
export declare function installDependenciesOnly(packages: string[], installPath?: string): Promise<string[]>;