UNPKG

337 BJavaScriptView Raw
1const path = require('path')
2const getCwd = require('./get-cwd')
3
4/**
5 * 获取打包配置文件路径 (默认: /koot.build.js)
6 * @returns {String}
7 */
8module.exports = () => typeof process.env.KOOT_BUILD_CONFIG_PATHNAME === 'string'
9 ? process.env.KOOT_BUILD_CONFIG_PATHNAME
10 : path.resolve(getCwd(), 'koot.build.js')