Files
vuepress/packages/@vuepress/shared-utils/lib/env.js
T
ULIVZ f81f3732f6 feat: refine theme API
1. Support scope package and shortcut like plugin.
2. Support relative path for 'layout' and 'notFound' option.
2018-09-02 22:55:44 +08:00

8 lines
260 B
JavaScript

const isDebug = process.argv.indexOf('--debug') !== -1
const isProduction = () => process.env.NODE_ENV === 'production'
const isTest = () => process.env.NODE_ENV === 'test'
exports.isDebug = isDebug
exports.isTest = isTest
exports.isProduction = isProduction