File tree 1 file changed +2
-2
lines changed
packages/@css-blocks/ember-cli
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -227,10 +227,10 @@ module.exports = {
227
227
228
228
229
229
if ( options . output !== undefined && typeof options . output !== "string" ) {
230
- throw new Error ( " Invalid css-block options in ` ember-cli-build.js` : Output must be a string or array." ) ;
230
+ throw new Error ( ` Invalid css-block options in ' ember-cli-build.js' : Output must be a string or array. Instead received ${ options . output } .` ) ;
231
231
}
232
232
if ( ! isEmber && typeof options . entry !== "string" && ! Array . isArray ( options . entry ) ) {
233
- throw new Error ( " Invalid css-block options in ` ember-cli-build.js` : Entry must be a string or array." ) ;
233
+ throw new Error ( ` Invalid css-block options in ' ember-cli-build.js' : Entry must be a string or array. Instead received ${ options . entry } .` ) ;
234
234
}
235
235
if ( isEmber && options . entry ) {
236
236
throw new Error ( `CSS Blocks entry points are auto-discovered in Ember apps. Do not pass an "entry" option in your CSS Blocks config.` ) ;
You can’t perform that action at this time.
0 commit comments