diff --git a/examples/basic/package.json b/examples/basic/package.json index ede7d1d43ed37..c6e06cb366938 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -2,11 +2,11 @@ "name": "my-turborepo", "private": true, "scripts": { - "build": "turbo build", - "dev": "turbo dev", - "lint": "turbo lint", + "build": "turbo run build", + "dev": "turbo run dev", + "lint": "turbo run lint", "format": "prettier --write \"**/*.{ts,tsx,md}\"", - "check-types": "turbo check-types" + "check-types": "turbo run check-types" }, "devDependencies": { "prettier": "^3.5.0", diff --git a/examples/design-system/package.json b/examples/design-system/package.json index 467027feca676..b9a63ecdf4e29 100644 --- a/examples/design-system/package.json +++ b/examples/design-system/package.json @@ -9,7 +9,7 @@ "changeset": "changeset", "version-packages": "changeset version", "release": "turbo run build --filter=docs^... && changeset publish", - "preview-storybook": "turbo preview-storybook" + "preview-storybook": "turbo run preview-storybook" }, "devDependencies": { "@changesets/cli": "^2.27.1", @@ -18,4 +18,4 @@ }, "packageManager": "pnpm@8.15.6", "name": "design-system" -} \ No newline at end of file +} diff --git a/examples/with-changesets/package.json b/examples/with-changesets/package.json index 703fed30a72ff..0bd39db2b8fff 100644 --- a/examples/with-changesets/package.json +++ b/examples/with-changesets/package.json @@ -1,14 +1,14 @@ { "private": true, "scripts": { - "build": "turbo build", - "dev": "turbo dev", - "lint": "turbo lint", - "clean": "turbo clean && rm -rf node_modules", + "build": "turbo run build", + "dev": "turbo run dev", + "lint": "turbo run lint", + "clean": "turbo run clean && rm -rf node_modules", "format": "prettier --write \"**/*.{ts,tsx,md}\"", "changeset": "changeset", "version-packages": "changeset version", - "release": "turbo build --filter=docs^... && changeset publish" + "release": "turbo run build --filter=docs^... && changeset publish" }, "devDependencies": { "@changesets/cli": "^2.27.1", diff --git a/examples/with-gatsby/package.json b/examples/with-gatsby/package.json index ff05daa25a612..ca40623dc8cb6 100644 --- a/examples/with-gatsby/package.json +++ b/examples/with-gatsby/package.json @@ -3,9 +3,9 @@ "version": "0.0.0", "private": true, "scripts": { - "build": "turbo build", - "dev": "turbo dev", - "lint": "turbo lint", + "build": "turbo run build", + "dev": "turbo run dev", + "lint": "turbo run lint", "format": "prettier --write \"**/*.{ts,tsx,md}\"" }, "devDependencies": { diff --git a/examples/with-nestjs/package.json b/examples/with-nestjs/package.json index a6613f03914d0..bd5929695046c 100644 --- a/examples/with-nestjs/package.json +++ b/examples/with-nestjs/package.json @@ -6,11 +6,11 @@ "author": "", "license": "UNLICENSED", "scripts": { - "dev": "turbo dev", - "build": "turbo build", - "test": "turbo test", - "test:e2e": "turbo test:e2e", - "lint": "turbo lint", + "dev": "turbo run dev", + "build": "turbo run build", + "test": "turbo run test", + "test:e2e": "turbo run test:e2e", + "lint": "turbo run lint", "format": "prettier --write \"**/*.{ts,tsx,md}\"" }, "devDependencies": { diff --git a/examples/with-tailwind/package.json b/examples/with-tailwind/package.json index 1516518e7f945..15693bff88b1b 100644 --- a/examples/with-tailwind/package.json +++ b/examples/with-tailwind/package.json @@ -2,10 +2,10 @@ "name": "with-tailwind", "private": true, "scripts": { - "build": "turbo build", + "build": "turbo run build", "dev": "turbo run dev", "lint": "turbo run lint", - "check-types": "turbo check-types", + "check-types": "turbo run check-types", "format": "prettier --write \"**/*.{ts,tsx,md}\"" }, "devDependencies": { diff --git a/examples/with-typeorm/package.json b/examples/with-typeorm/package.json index 2cb8c537487f4..5cd6023b96a8d 100644 --- a/examples/with-typeorm/package.json +++ b/examples/with-typeorm/package.json @@ -1,10 +1,10 @@ { "private": true, "scripts": { - "build": "turbo build", - "dev": "turbo dev", - "lint": "turbo lint", - "type-check": "turbo type-check", + "build": "turbo run build", + "dev": "turbo run dev", + "lint": "turbo run lint", + "type-check": "turbo run type-check", "format": "prettier --write \"**/*.{ts,tsx,md}\"" }, "devDependencies": { diff --git a/examples/with-vite-react/package.json b/examples/with-vite-react/package.json index c47b1cfe0b465..8c23cadf6d3c4 100644 --- a/examples/with-vite-react/package.json +++ b/examples/with-vite-react/package.json @@ -1,9 +1,9 @@ { "private": true, "scripts": { - "build": "turbo build", - "dev": "turbo dev", - "lint": "turbo lint", + "build": "turbo run build", + "dev": "turbo run dev", + "lint": "turbo run lint", "format": "prettier --write \"**/*.{ts,tsx,md}\"" }, "devDependencies": { diff --git a/examples/with-vite/package.json b/examples/with-vite/package.json index f9172458caf0c..95399dc8be06d 100644 --- a/examples/with-vite/package.json +++ b/examples/with-vite/package.json @@ -1,9 +1,9 @@ { "private": true, "scripts": { - "build": "turbo build", - "dev": "turbo dev", - "lint": "turbo lint", + "build": "turbo run build", + "dev": "turbo run dev", + "lint": "turbo run lint", "format": "prettier --write \"**/*.{ts,tsx,md}\"" }, "devDependencies": {