UNPKG

@omni-door/utils

Version:

The utils of omni-door's projects

15 lines 938 B
export type BUILD = 'webpack' | 'rollup' | 'gulp' | 'tsc' | 'next' | ''; export type PROJECT_TYPE = 'spa-react' | 'spa-react-pc' | 'spa-vue' | 'ssr-react' | 'ssr-vue' | 'component-react' | 'component-vue' | 'toolkit'; export type PKJ_TOOL = 'yarn' | 'npm' | 'pnpm'; export type STYLE = 'less' | 'scss' | 'css' | 'all' | ''; export type LAYOUT = 'viewport' | 'rem' | 'px' | ''; export type SPA_SERVER = 'express-webpack' | ''; export type COMPONENT_SERVER = 'storybook' | ''; export type SSR_SERVER = 'next-app' | 'next-pages' | 'nuxt' | ''; export type STRATEGY = 'stable' | 'latest'; export type LOGLEVEL = 'debug' | 'info' | 'warn' | 'error' | 'silent'; export type PLUGIN_STAGE = 'new' | 'build' | 'release'; export type MARKDOWN = 'mdx' | 'md'; export type TEST_FRAME = 'mocha' | 'jest' | ''; export type SPINNER_STATE = 'start' | 'warn' | 'fail' | 'succeed' | 'info' | 'stop'; export type HASH = 'hash' | 'chunkhash' | 'contenthash';