[ci] yarn format

This commit is contained in:
matthewp 2021-06-14 18:18:59 +00:00 committed by GitHub Actions
parent 73a43d9301
commit 40720b2c1e

View file

@ -100,7 +100,7 @@ export default function astroScopedStyles(options: AstroScopedOptions): Plugin {
return {
postcssPlugin: '@astrojs/postcss-scoped-styles',
Rule(rule) {
if(!rulesScopedCache.has(rule)) {
if (!rulesScopedCache.has(rule)) {
rule.selector = scopeRule(rule.selector, options.className);
rulesScopedCache.add(rule);
}