@omni-door/tpl-component-library-react
Version:
The React component-library-react project template
33 lines (32 loc) • 849 B
TypeScript
import { STYLE, DEVSERVER, STRATEGY } from '@omni-door/tpl-utils';
interface Config {
ts: boolean;
test: boolean;
eslint: 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;
commitlintDepArr: string[];
commitlintDepStr: string;
stylelintDepArr: string[];
stylelintDepStr: string;
devServerDepArr: string[];
devServerDepStr: string;
};
export {};