0.8.6 • Published 1 year ago

estoy v0.8.6

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

estoy

Learn the Vite source code (Simpler)

Used

  npm i estoy

  // package.json
  "scripts": {
    "dev": "estoy",
  }

estoy GlobalCommonOptions

  interface GlobalCommonOptions {
    d?: boolean | string
    debug?: boolean | string
    mode?: string
    c?: string
    config?: string
    force?: boolean
  }

estoy dev server options

export interface CommonServerOption {
  port?: number
  host?: string | boolean
  open?: boolean | string
}

export interface ServerOptions extends CommonServerOption {
  watch?: WatchOptions
  hmr?: boolean
}