create-testplane
Version:
A tool for fast and simple Testplane configuration
21 lines (20 loc) • 823 B
TypeScript
export declare const PACKAGE_JSON = "package.json";
export declare const CONFIG_NAMES: {
readonly TESTPLANE_NEW_TS: "testplane.config.ts";
readonly TESTPLANE_NEW_CTS: "testplane.config.cts";
readonly TESTPLANE_NEW_JS: "testplane.config.js";
readonly TESTPLANE_NEW_CJS: "testplane.config.cjs";
readonly TESTPLANE_TS: ".testplane.conf.ts";
readonly TESTPLANE_JS: ".testplane.conf.js";
readonly HERMIONE_TS: ".hermione.conf.ts";
readonly HERMIONE_JS: ".hermione.conf.js";
};
export declare const DEFAULT_PM = "npm";
export type PackageManager = "npm" | "yarn" | "pnpm";
export declare const PMS: Record<PackageManager, {
lock: string;
init: string;
install: string;
withRegistry: (command: string, registry: string) => string;
}>;
export declare const pluginSuffixes: string[];