diff --git a/create-turbo/templates/_shared_ts/package.json b/create-turbo/templates/_shared_ts/package.json index ff95a4719f126..1a9917d248c4b 100644 --- a/create-turbo/templates/_shared_ts/package.json +++ b/create-turbo/templates/_shared_ts/package.json @@ -7,9 +7,9 @@ "packages/*" ], "scripts": { - "build": "yarn turbo run build", - "dev": "yarn turbo run dev --parallel", - "lint": "yarn turbo run lint", + "build": "turbo run build", + "dev": "turbo run dev --parallel", + "lint": "turbo run lint", "format": "prettier --write '**/*.{ts,tsx,.md}'" }, "devDependencies": { diff --git a/create-turbo/templates/pnpm/package.json b/create-turbo/templates/pnpm/package.json index 8710467052330..5ec06ac9fd915 100644 --- a/create-turbo/templates/pnpm/package.json +++ b/create-turbo/templates/pnpm/package.json @@ -2,6 +2,12 @@ "name": "turborepo-basic", "version": "0.0.0", "private": true, + "scripts": { + "build": "turbo run build", + "dev": "turbo run dev --parallel", + "lint": "turbo run lint", + "format": "prettier --write '**/*.{ts,tsx,.md}'" + }, "devDependencies": { "prettier": "^2.5.1", "turbo": "latest"