1. Remove duplicate/broken code in product tables section 2. Fix PostCSS config for Tailwind 4 3. Add @tailwindcss/postcss dependency 4. Remove --production flag from Dockerfile (sharp required) All fixes enable successful Docker build with favicon working.
11 lines
538 B
TypeScript
11 lines
538 B
TypeScript
import type { Logger } from '../core/logger/core.js';
|
|
type GetPackageOptions = {
|
|
skipAsk?: boolean;
|
|
optional?: boolean;
|
|
cwd?: string;
|
|
};
|
|
export declare function getPackage<T>(packageName: string, logger: Logger, options: GetPackageOptions, otherDeps?: string[]): Promise<T | undefined>;
|
|
export declare function fetchPackageJson(scope: string | undefined, name: string, tag: string): Promise<Record<string, any> | Error>;
|
|
export declare function fetchPackageVersions(packageName: string): Promise<string[] | Error>;
|
|
export {};
|