File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ module.exports = class Breakpoints {
104
104
return false ;
105
105
}
106
106
if ( ! this . #config. drupal ?. themeName ) {
107
- console . warn ( MESSAGES . defaultThemeName ( DEFAULT_CONFIG . drupal . themeName ) ) ;
107
+ console . warn ( MESSAGES . defaultThemeName ( ) ) ;
108
108
}
109
109
return true ;
110
110
}
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
2
breakpoints : ( path ) =>
3
3
`Couldn't read Drupal's breakpoints file from ${ path } !` ,
4
- defaultThemeName : ( name ) =>
5
- `Missing "userConfig.drupal.themeName". Will use "${ name } " for now.` ,
4
+ defaultThemeName : ( ) => `Missing "userConfig.drupal.themeName" value.` ,
6
5
noOutput : ( config ) =>
7
6
`No output with this configuration:\n${ JSON . stringify ( config ) } ` ,
8
7
readFile : ( path ) => `Couldn't read from ${ path } file!` ,
You can’t perform that action at this time.
0 commit comments