Use single directory for config #679

Merged
skhameneh merged 3 commits from singleConfigDir into master 2018-11-07 21:37:12 +01:00
6 changed files with 2 additions and 2 deletions
Showing only changes of commit 0b1dcb224d - Show all commits

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)) {