Skip to content

Commit 9d6e8bc

Browse files
committed
Fix style
1 parent 93cdddd commit 9d6e8bc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib/substituteVariantsAtRules.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ export default function(config, { variantGenerators: pluginVariantGenerators })
7979

8080
_.forEach(_.without(ensureIncludesDefault(variants), 'responsive'), variant => {
8181
if (!variantGenerators[variant]) {
82-
throw new Error(`Your config mentions the "${variant}" variant, but "${variant}" doesn't appear to be a variant. Did you forget or misconfigure a plugin that supplies that variant?`);
82+
throw new Error(
83+
`Your config mentions the "${variant}" variant, but "${variant}" doesn't appear to be a variant. Did you forget or misconfigure a plugin that supplies that variant?`
84+
)
8385
}
8486
variantGenerators[variant](atRule, config)
8587
})

0 commit comments

Comments
 (0)