Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions examples/snippets/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"name": "snippets"
}
2 changes: 2 additions & 0 deletions packages/actor-core-cli/src/macros.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ export async function getExamples(): Promise<ExamplesRegistry> {
const dirs = await readdir(EXAMPLES_PATH, { encoding: "utf-8" });

for (const dir of dirs) {
if (dir === "snippets") continue;

const output = execSync(`git ls-files ${dir}`, {
cwd: EXAMPLES_PATH,
encoding: "utf-8",
Expand Down
6 changes: 6 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7578,6 +7578,12 @@ __metadata:
languageName: node
linkType: hard

"snippets@workspace:examples/snippets":
version: 0.0.0-use.local
resolution: "snippets@workspace:examples/snippets"
languageName: unknown
linkType: soft

"socks-proxy-agent@npm:^8.0.3":
version: 8.0.5
resolution: "socks-proxy-agent@npm:8.0.5"
Expand Down
Loading