UNPKG

@omni-door/cli

Version:

A tool set for set up the standard JS project

25 lines (24 loc) 781 B
import initial from './initial'; import dev from './dev'; import start from './start'; import newTpl from './new'; import build from './build'; import release from './release'; export { default as initial } from './initial'; export { default as dev } from './dev'; export { default as start } from './start'; export { default as newTpl } from './new'; export { default as build } from './build'; export { default as release } from './release'; export { setLogo, setBrand } from '@omni-door/utils'; declare const _default: { initial: typeof initial; dev: typeof dev; start: typeof start; new: typeof newTpl; build: typeof build; release: typeof release; setLogo: (logo: string) => void; setBrand: (brand: string) => void; }; export default _default;