@@ -50,22 +50,26 @@ const DEFAULT_CONFIG = {
50
50
// a breaking change to the library's public API.
51
51
// TODO https://github.com/apiaryio/dredd/issues/1344
52
52
function flattenConfig ( config ) {
53
- const proxiedConfig = R . compose (
54
- // Rename root "server" key to "endpoint".
55
- // Necessary to prevent options values collision, as:
56
- // - root.server - stands for server url.
57
- // - options.server - stands for a server command (i.e. "npm start").
58
- // - options.endpoint - semantically the same as "root.server"
59
- // When merged, these values must not be overriden.
60
- R . dissoc ( 'server' ) ,
61
- R . over (
62
- R . lens ( R . prop ( 'server' ) , R . assoc ( 'endpoint' ) ) ,
63
- R . identity
53
+ // Rename "root.server" key to "root.endpoint".
54
+ // Necessary to prevent options values collision between:
55
+ // - root.server - stands for server url.
56
+ // - options.server - stands for a server command (i.e. "npm start").
57
+ // - options.endpoint - semantically the same as "root.server"
58
+ //
59
+ // NOTE It's important to rename the option here, as when flattened
60
+ // there is no difference between "root.server" and "options.server"
61
+ // which serve entirely different purposes. Thus it cannot be coerced
62
+ // on the normalization layer.
63
+ const aliasedConfig = R . when (
64
+ R . has ( 'server' ) ,
65
+ R . compose (
66
+ R . dissoc ( 'server' ) ,
67
+ R . assoc ( 'endpoint' , R . prop ( 'server' , config ) )
64
68
)
65
69
) ( config ) ;
66
70
67
- const nestedOptions = R . prop ( 'options' , proxiedConfig ) ;
68
- const rootOptions = R . omit ( [ 'server' , ' options'] , proxiedConfig ) ;
71
+ const rootOptions = R . omit ( [ 'options' ] , aliasedConfig ) ;
72
+ const nestedOptions = R . prop ( ' options', aliasedConfig ) ;
69
73
70
74
if ( nestedOptions ) {
71
75
logger . warn ( 'Deprecated usage of `options` in Dredd configuration.' ) ;
0 commit comments