[ci] yarn format
This commit is contained in:
parent
92532b8882
commit
6a7c5aa582
2 changed files with 3 additions and 3 deletions
|
@ -71,9 +71,9 @@ export class Metadata {
|
|||
*/
|
||||
*hydrationDirectiveSpecifiers() {
|
||||
const found = new Set<string>();
|
||||
for(const metadata of this.deepMetadata()) {
|
||||
for (const metadata of this.deepMetadata()) {
|
||||
for (const directive of metadata.hydrationDirectives) {
|
||||
if(!found.has(directive)) {
|
||||
if (!found.has(directive)) {
|
||||
found.add(directive);
|
||||
yield hydrationSpecifier(directive);
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@ import cheerio from 'cheerio';
|
|||
import { loadFixture, isWindows } from './test-utils.js';
|
||||
|
||||
describe('Static build - frameworks', () => {
|
||||
if(isWindows) {
|
||||
if (isWindows) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue