Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyshew committed Jan 15, 2025
1 parent 65f3499 commit 06f8973
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/create-turbo/src/commands/create/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ export async function create(
if (!isMaintainedByCoreTeam) {
logger.log();
logger.log(
"Note: This example is maintained by the community. If you experience an issue, please submit a pull request with a fix. Issues created for community-supported examples will be closed."
"Note: This example is maintained by the community. If you experience an issue, please submit a pull request with a fix. GitHub Issues created for community-supported examples will be closed."
);
}
opts.telemetry?.trackCommandStatus({ command: "create", status: "end" });
Expand Down
7 changes: 6 additions & 1 deletion packages/create-turbo/src/transforms/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ export interface TransformInput {
}

export interface MetaJson {
maintainedByCoreTeam: string;
maintainedByCoreTeam?: string;
name?: string;
description?: string;
featured?: boolean;
boost?: boolean;
template?: boolean;
}

export interface TransformResponse {
Expand Down

0 comments on commit 06f8973

Please sign in to comment.