Use single directory for config

This commit is contained in:
Shawn 2018-11-06 17:26:21 -05:00
parent e46533046f
commit 0b1dcb224d
6 changed files with 2 additions and 2 deletions

View file

@ -1,8 +1,8 @@
const { statSync, existsSync, readdirSync } = require('fs');
const { join, resolve } = require('path');
const DEFAULT_ROOT = 'client/build';
const CUSTOM_ROOT = 'client_custom/build';
const CUSTOM_SCSS_ROOT = 'client_custom/scss';
const CUSTOM_ROOT = 'config/client_custom/build';
const CUSTOM_SCSS_ROOT = 'config/client_custom/scss';
const getFolders = path => {
if (existsSync(path)) {