2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/webpack/utils.js
Faris Ansari 96b5bc091b test: Fix Database Migrate test
- Use defaultsDeep instead of deepmerge
2020-01-28 17:11:26 +05:30

45 lines
967 B
JavaScript

const fs = require('fs');
const path = require('path');
const chalk = require('chalk');
const defaultsDeep = require('lodash/defaultsDeep');
const logger = require('./logger');
const frappeConf = 'frappe.conf.js';
function getAppDir() {
let dir = process.cwd();
if (fs.existsSync(path.join(dir, frappeConf))) {
return dir;
}
warn = logger('utils', 'red')
warn();
warn(`Looks like this is not the root of a FrappeJS project`);
warn(`Please run this command from a folder which contains ${chalk.yellow(frappeConf)} file`);
warn();
process.exit(1);
}
function getAppConfig() {
const defaults = {
dev: {
devServerHost: 'localhost',
devServerPort: 8000
}
}
const appConfig = require(path.resolve(getAppDir(), frappeConf));
return defaultsDeep(defaults, appConfig);
}
function resolveAppDir(...args) {
return path.resolve(getAppDir(), ...args);
}
module.exports = {
getAppDir,
getAppConfig,
resolveAppDir
}