Skip to content

Commit 89e22aa

Browse files
authored
Merge pull request sveltejs#16 from sveltejs/examples-error
feat: filter embeds from examples list
2 parents 87ff318 + 4118bfe commit 89e22aa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/action.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28862,7 +28862,7 @@ async function process_tutorial(
2886228862
})
2886328863
);
2886428864

28865-
return [full, list];
28865+
return [full, list.filter(({name}) => name !== 'embeds')];
2886628866
}
2886728867

2886828868
async function transform_tutorial(

dist/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27625,7 +27625,7 @@ async function process_tutorial(
2762527625
})
2762627626
);
2762727627

27628-
return [full, list];
27628+
return [full, list.filter(({name}) => name !== 'embeds')];
2762927629
}
2763027630

2763127631
async function transform_tutorial(

src/transform/docs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ async function process_tutorial(
264264
})
265265
);
266266

267-
return [full, list];
267+
return [full, list.filter(({name}) => name !== 'embeds')];
268268
}
269269

270270
export async function transform_tutorial(

0 commit comments

Comments
 (0)