@shipengine/connect
Version:
The official developer tooling for building ShipEngine connect apps
11 lines (10 loc) • 486 B
TypeScript
/**
* This function is used for add all dependencies in the package.json app to the bundled dependencies property
* and then running npm pack to create a tarball for deploying to the connect platform.
*/
export declare function packageApp(cwd?: string): Promise<string>;
export declare class AppFailedToPackageError extends Error {
code: string;
constructor(message: string);
}
export declare function isAppFailedToPackageError(obj: unknown): obj is AppFailedToPackageError;