Skip to content

Commit

Permalink
Switch to nicer turborepo UI when not in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
spautz committed Jan 16, 2025
1 parent 92a6959 commit ce4ef71
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion demos/hello-world-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"scripts": {
"____ STANDARD PACKAGE TASKS ________________________________________": "",
"all": "turbo run pipeline-all",
"all:ci": "turbo run pipeline-ci",
"all:ci": "turbo run pipeline-ci --ui=stream",
"build": "pnpm run build:clean && pnpm run build:main",
"clean": "pnpm run build:clean && pnpm run test:clean && rimraf --glob ./node_modules/.cache ./.turbo ./*.log",
"lint": "eslint . --max-warnings 0",
Expand Down
2 changes: 1 addition & 1 deletion demos/hello-world-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"scripts": {
"____ STANDARD PACKAGE TASKS ________________________________________": "",
"all": "turbo run pipeline-all",
"all:ci": "turbo run pipeline-ci",
"all:ci": "turbo run pipeline-ci --ui=stream",
"build": "pnpm run build:clean && pnpm run build:main",
"clean": "pnpm run build:clean && pnpm run test:clean && rimraf --glob ./node_modules/.cache ./.turbo ./*.log",
"dev": "pnpm run start:dev",
Expand Down
2 changes: 1 addition & 1 deletion docs-website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"scripts": {
"____ STANDARD PACKAGE TASKS ________________________________________": "",
"all": "turbo run pipeline-all",
"all:ci": "turbo run pipeline-ci",
"all:ci": "turbo run pipeline-ci --ui=stream",
"build": "docusaurus build",
"clean": "docusaurus clear",
"dev": "pnpm run start:dev",
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
"husky:precommit": "lint-staged",
"husky:prepush": "pnpm run format:verify && turbo run w:lint lint w:typecheck typecheck",
"____ BATCH OPERATIONS & STANDARD TASKS _____________________________": "",
"all": "pnpm run format && turbo run w:lint:fix lint:fix w:typecheck typecheck test build",
"all:ci": "pnpm run format:verify && turbo run w:lint w:typecheck w:all-tests:ci",
"all:all": "pnpm run all && turbo run w:lint:fix lint:fix w:typecheck typecheck w:all-tests test build pipeline-all",
"all": "pnpm run format && turbo run w:lint:fix lint:fix w:typecheck typecheck test build",
"all:all": "pnpm run format && turbo run w:lint:fix lint:fix w:typecheck typecheck w:all-tests test build pipeline-all",
"all:ci": "pnpm run format:verify && turbo run w:lint w:typecheck w:all-tests:ci --ui=stream",
"lint": "turbo run w:lint lint",
"lint:fix": "turbo run w:lint:fix lint:fix",
"test": "turbo run test",
"test:ci": "turbo run w:all-tests:ci",
"test:ci": "turbo run w:all-tests:ci --ui=stream",
"test:ui": "turbo run w:all-tests:ui",
"test:watch": "turbo run test:watch",
"typecheck": "turbo run w:typecheck typecheck",
Expand All @@ -58,12 +58,12 @@
"w:typecheck": "tsc -p ./tsconfig.json --noEmit",
"____ PACKAGE-ONLY TASKS ____________________________________________": "",
"packages:all": "turbo run pipeline-all",
"packages:all:ci": "turbo run pipeline-ci",
"packages:all:ci": "turbo run pipeline-ci --ui=stream",
"packages:build": "turbo run build",
"packages:lint": "turbo run lint",
"packages:lint:fix": "turbo run lint:fix",
"packages:test": "turbo run test",
"packages:test:ci": "turbo run test:ci",
"packages:test:ci": "turbo run test:ci --ui=stream",
"packages:test:ui": "turbo run test:ui",
"packages:test:watch": "turbo run test:watch",
"packages:typecheck": "turbo run typecheck"
Expand Down
2 changes: 1 addition & 1 deletion packages/node-library-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"postpack": "pnpm run build:verifypack",
"____ STANDARD PACKAGE TASKS ________________________________________": "",
"all": "turbo run pipeline-all",
"all:ci": "turbo run pipeline-ci",
"all:ci": "turbo run pipeline-ci --ui=stream",
"build": "pnpm run build:clean && pnpm run build:cjs && pnpm run build:esm && pnpm run build:verify",
"clean": "pnpm run build:clean && pnpm run test:clean && rimraf --glob ./node_modules/.cache ./.turbo ./*.log",
"dev": "pnpm run build:esm:watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-library-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"postpack": "pnpm run build:verifypack",
"____ STANDARD PACKAGE TASKS ________________________________________": "",
"all": "turbo run pipeline-all",
"all:ci": "turbo run pipeline-ci",
"all:ci": "turbo run pipeline-ci --ui=stream",
"build": "pnpm run build:clean && pnpm run build:cjs && pnpm run build:esm && pnpm run build:verify",
"clean": "pnpm run build:clean && pnpm run test:clean && rimraf --glob ./node_modules/.cache ./.turbo ./*.log",
"dev": "pnpm run build:esm:watch",
Expand Down
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://turbo.build/schema.json",
// OPTIONAL: "ui": "tui",
"ui": "tui",

"tasks": {
// -----------------------------------------------------------------------
Expand Down

0 comments on commit ce4ef71

Please sign in to comment.