1.1.1 • Published 1 year ago

@io-arc/env v1.1.1

Weekly downloads
89
License
ISC
Repository
github
Last release
1 year ago

@io-arc/env

Build environment define.

See the documents.

Install

$ npm i @io-arc/env

Usage

$  NODE_ENV=development MODE_ENV=once npm run XXX
import { NODE_ENV, MODE_ENV, BUILD, MODE } from '@io-arc/env'

const isMinify = NODE_ENV === BUILD.PRODUCTION
// -> false

const isSIngle = MODE_ENV === MODE.ONCE
// -> true