aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/create-turbo/src/transforms/index.ts
blob: 1918ecc2daaf094944b310bdf828ef0016807dd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { transform as packageManagerTransform } from "./package-manager";
import { transform as officialStarter } from "./official-starter";
import { transform as gitIgnoreTransform } from "./git-ignore";
import type { TransformInput, TransformResult } from "./types";

/**
 * In the future, we may want to support sourcing additional transforms from the templates themselves.
 */
export const transforms: Array<(args: TransformInput) => TransformResult> = [
  officialStarter,
  gitIgnoreTransform,
  packageManagerTransform,
];