@omni-door/tpl-component-library-react
Version:
The React component-library-react project template
38 lines (37 loc) • 978 B
TypeScript
import { STYLE, DEVSERVER, STRATEGY } from '@omni-door/utils';
interface Config {
ts: boolean;
test: boolean;
eslint: boolean;
prettier: boolean;
commitlint: boolean;
style: STYLE;
stylelint: boolean;
devServer: DEVSERVER;
}
export declare function dependencies(strategy: STRATEGY): {
depArr: string[];
depStr: string;
};
export declare function devDependencies(strategy: STRATEGY, config: Config): {
devDepArr: string[];
defaultDepArr: string[];
defaultDepStr: string;
tsDepArr: string[];
tsDepStr: string;
testDepArr: string[];
testDepStr: string;
eslintDepArr: string[];
eslintDepStr: string;
prettierDepArr: string[];
prettierDepStr: string;
commitlintDepArr: string[];
commitlintDepStr: string;
stylelintDepArr: string[];
stylelintDepStr: string;
devServerDepArr: string[];
devServerDepStr: string;
buildDepArr: string[];
buildDepStr: string;
};
export {};