UNPKG

344 BJavaScriptView Raw
1const path = require('path')
2const getDirDevTmp = require('./get-dir-dev-tmp')
3
4/**
5 * _仅针对开发环境_ 获取 DLL 文件存放路径
6 * @param {String} cwd
7 * @param {String} [stage]
8 * @returns {String}
9 */
10module.exports = (cwd, stage = process.env.WEBPACK_BUILD_STAGE) =>
11 path.resolve(getDirDevTmp(cwd), 'dll', stage)