UNPKG

335 BJavaScriptView Raw
1const fs = require('fs');
2const path = require('path');
3const userHome = require('user-home');
4
5module.exports = function getConfigPath() {
6 // userHome 有可能不存在
7 const CONFIG_PATH = path.join(userHome || __dirname, '.idev');
8 if (!fs.existsSync(CONFIG_PATH)) {
9 fs.mkdirSync(CONFIG_PATH);
10 }
11 return CONFIG_PATH;
12};