forked from pattern-lab/patternlab-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresolve-config.js
52 lines (49 loc) · 1.56 KB
/
resolve-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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
'use strict';
const exists = require('path-exists');
const path = require('path');
const error = require('./utils').error;
const readJsonAsync = require('./utils').readJsonAsync;
const wrapAsync = require('./utils').wrapAsync;
const {
findPatternLabConfig,
} = require('@pattern-lab/core/src/lib/utils/find-config-file');
/**
* @func resolveConfig
* @desc Resolves the given Pattern Lab config file.
* @param {string} [configPath=./patternlab-config.json] - Path to the patternlab-config.json. Defaults to project dir.
* @return {object|boolean} Returns the config object or false otherwise.
*/
function resolveConfig(configPath) {
return wrapAsync(function*() {
if (typeof configPath !== 'string') {
error(
'resolveConfig: If configPath is set, it is expected to be of type string.'
);
return false;
}
if (!exists.sync(configPath)) {
error(`resolveConfig: configPath ${configPath} does not exists`);
return false;
}
/**
* Setup the config.
* 1. Check if user specified custom Pattern Lab config location
* 2. Read the config file
*/
try {
if (configPath) {
const absoluteConfigPath = path.resolve(configPath); // 1
return yield findPatternLabConfig(absoluteConfigPath);
} else {
return yield findPatternLabConfig();
}
} catch (err) {
error(
'resolveConfig: Got an error during parsing your Pattern Lab config. Please make sure your config file exists.'
);
error(err);
return false;
}
});
}
module.exports = resolveConfig;