- Move Astro files from dealplustech-astro/ to project root - Update Dockerfile: PORT environment variable (default 80) - Add vite.config.ts with allowedHosts: true - Matches nixpacks behavior for Easypanel deployment - No hardcoded ports or domains
11 lines
384 B
TypeScript
11 lines
384 B
TypeScript
import type { CommandExecutor } from '../../definitions.js';
|
|
import type { PackageManager } from '../definitions.js';
|
|
export declare class YarnPackageManager implements PackageManager {
|
|
#private;
|
|
readonly name: string;
|
|
constructor({ commandExecutor }: {
|
|
commandExecutor: CommandExecutor;
|
|
});
|
|
getPackageVersion(name: string): Promise<string | undefined>;
|
|
}
|