-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconfig.js
32 lines (29 loc) · 982 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const path = require('path');
const root_folder = __dirname;
// ------------------------------------------------------------
// Fill in values for these variables
const dist = '/dist/';
const sourceRootFolder = '/src/';
const modulesDir = '/src/modules/**/*.js';
const assetsDir = '/assets/';
// ------------------------------------------------------------
// ------------------------------------------------------------
const mainSettings = {
modulesDir: path.join(root_folder, modulesDir),
assetsDir: path.join(root_folder, assetsDir),
dist: path.join(root_folder, dist),
};
module.exports = {
root_folder,
mainSettings,
relativeDist: dist,
sourceRootFolder: path.join(root_folder, sourceRootFolder),
fullConfigsPath: path.join(root_folder, '/config/'),
componentsDir: {
main: root_folder + '/src',
atoms: '01-atoms',
molecules: '02-molecules',
organisms: '03-organisms',
pages: '04-pages',
},
};