Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(examples): mark core supported examples #9707

Merged
merged 7 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/basic/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"maintainedByCoreTeam": true
}
3 changes: 2 additions & 1 deletion examples/kitchen-sink/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"name": "Kitchen Sink",
"description": "Want to see a more in-depth example? Includes multiple frameworks, both frontend and backend.",
"template": "https://vercel.com/templates/remix/turborepo-kitchensink",
"featured": true
"featured": true,
"maintainedByCoreTeam": true
}
3 changes: 2 additions & 1 deletion examples/non-monorepo/meta.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"name": "Non-Monorepo",
"description": "Example of using Turborepo in a single project without workspaces"
"description": "Example of using Turborepo in a single project without workspaces",
"maintainedByCoreTeam": true
}
3 changes: 3 additions & 0 deletions examples/with-shell-commands/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"maintainedByCoreTeam": true
}
3 changes: 2 additions & 1 deletion examples/with-svelte/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"description": "Monorepo with multiple SvelteKit apps sharing a UI Library",
"featured": true,
"template": "https://vercel.com/templates/svelte/turborepo-sveltekit-starter",
"boost": true
"boost": true,
"maintainedByCoreTeam": true
}
3 changes: 2 additions & 1 deletion examples/with-tailwind/meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "Tailwind CSS",
"description": "Monorepo with multiple Next.js apps sharing a UI Library all using Tailwind CSS with a shared config",
"featured": true
"featured": true,
"maintainedByCoreTeam": true
}
3 changes: 3 additions & 0 deletions packages/create-turbo/src/commands/create/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,5 +285,8 @@ export async function create(
});
logger.log("- Run a command twice to hit cache");
}

logger.log();
logger.log("Note: ");
anthonyshew marked this conversation as resolved.
Show resolved Hide resolved
opts.telemetry?.trackCommandStatus({ command: "create", status: "end" });
}
Loading