Skip to content

Commit df74fc2

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

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
@@ -28807,7 +28807,7 @@ async function transform_examples(
2880728807
examples: example_list,
2880828808
};
2880928809
});
28810-
return { list, full: full.filter(({name}) => name !== 'embeds') };
28810+
return { list: list.filter(({name}) => name !== 'embeds') , full};
2881128811
}
2881228812

2881328813
async function process_tutorial(

dist/cli.js

Lines changed: 1 addition & 1 deletion
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: full.filter(({name}) => name !== 'embeds') };
27573+
return { list: list.filter(({name}) => name !== 'embeds') , full};
2757427574
}
2757527575

2757627576
async function process_tutorial(

src/transform/docs.ts

Lines changed: 1 addition & 1 deletion
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: full.filter(({name}) => name !== 'embeds') };
212+
return { list: list.filter(({name}) => name !== 'embeds') , full};
213213
}
214214

215215
async function process_tutorial(

0 commit comments

Comments
 (0)