Skip to content

Commit 12ac93d

Browse files
committed
feat: actually filter examples
1 parent 4118bfe commit 12ac93d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

dist/action.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28807,7 +28807,7 @@ async function transform_examples(
2880728807
examples: example_list,
2880828808
};
2880928809
});
28810-
return { list, full };
28810+
return { list, full: full.filter(({name}) => name !== 'embeds') };
2881128811
}
2881228812

2881328813
async function process_tutorial(
@@ -28862,7 +28862,7 @@ async function process_tutorial(
2886228862
})
2886328863
);
2886428864

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

2886828868
async function transform_tutorial(

dist/cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27570,7 +27570,7 @@ async function transform_examples(
2757027570
examples: example_list,
2757127571
};
2757227572
});
27573-
return { list, full };
27573+
return { list, full: full.filter(({name}) => name !== 'embeds') };
2757427574
}
2757527575

2757627576
async function process_tutorial(
@@ -27625,7 +27625,7 @@ async function process_tutorial(
2762527625
})
2762627626
);
2762727627

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

2763127631
async function transform_tutorial(

src/transform/docs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ export async function transform_examples(
209209
examples: example_list,
210210
};
211211
});
212-
return { list, full };
212+
return { list, full: full.filter(({name}) => name !== 'embeds') };
213213
}
214214

215215
async function process_tutorial(
@@ -264,7 +264,7 @@ async function process_tutorial(
264264
})
265265
);
266266

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

270270
export async function transform_tutorial(

0 commit comments

Comments
 (0)