export type BUILD = 'webpack' | 'rollup' | 'tsc' | ''; export type PROJECT_TYPE = 'spa-react' | 'component-library-react' | 'toolkit'; export type PKJTOOL = 'yarn' | 'npm' | 'cnpm'; export type STYLE = 'less' | 'scss' | 'css' | 'all' | ''; export type DEVSERVER = 'docz' | 'storybook' | 'bisheng' | ''; export type STRATEGY = 'stable' | 'latest'; export type LOGLEVEL = 'debug' | 'info' | 'warn' | 'error' | 'silent'; export type PLUGINSTAGE = 'new' | 'build' | 'release'; export type MARKDOWN = 'mdx' | 'md'; export type TESTFRAME = 'mocha' | 'jest' | ''; export type SPINNER_STATE = 'start' | 'warn' | 'fail' | 'succeed' | 'info' | 'stop';