File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import resolveSchemaFn from './properties/resolve'
11
11
import outputSchema from './properties/output'
12
12
import watchOptionsSchema from './properties/watchOptions'
13
13
import devServerSchema from './properties/devServer'
14
- import { absolutePath } from './types'
14
+ import { looksLikeAbsolutePath } from './types'
15
15
import _merge from 'lodash/merge'
16
16
import sh from 'shelljs'
17
17
@@ -37,9 +37,9 @@ const makeSchema = (schemaOptions, schemaExtension) => {
37
37
output : outputSchema ,
38
38
plugins : pluginsSchema ,
39
39
profile : Joi . boolean ( ) ,
40
- recordsInputPath : absolutePath ,
41
- recordsOutputPath : absolutePath ,
42
- recordsPath : absolutePath ,
40
+ recordsInputPath : looksLikeAbsolutePath ,
41
+ recordsOutputPath : looksLikeAbsolutePath ,
42
+ recordsPath : looksLikeAbsolutePath ,
43
43
resolve : resolveSchema ,
44
44
resolveLoader : resolveSchema . concat ( Joi . object ( {
45
45
moduleTemplates : Joi . array ( ) . items ( Joi . string ( ) ) ,
You can’t perform that action at this time.
0 commit comments