UNPKG

bun-plugin-dotenvx

Version:

A Bun plugin for a seamless dotenvx experience.

28 lines (16 loc) 578 B
import type { BunPlugin } from 'bun'; export declare interface DotenvxPluginOptions { path?: string | string[] overload?: boolean strict?: boolean ignore?: string[] envKeysFile?: string convention?: 'nextjs' logLevel?: 'error' | 'warn' | 'info' | 'verbose' | 'debug' | 'errorv' | 'errornocolor' | 'success' | 'successv' | 'help' | 'http' | 'blank' quiet?: boolean verbose?: boolean debug?: boolean } export declare function createDotenvxPlugin(options: DotenvxPluginOptions): BunPlugin; export * from './types' export default createDotenvxPlugin;