Skip to content

Commit 50fe84e

Browse files
authored
Revert "Show no Turbo logs except when there is an error (#2366)" (#2385)
This reverts commit 8af5427.
1 parent b566e7a commit 50fe84e

File tree

1 file changed

+25
-50
lines changed

1 file changed

+25
-50
lines changed

turbo.json

Lines changed: 25 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,17 @@
1414
"test:unit:browser",
1515
"test:unit:node"
1616
],
17-
"outputs": ["dist/**"],
18-
"outputMode": "errors-only"
17+
"outputs": ["dist/**"]
1918
},
2019
"compile:js": {
2120
"dependsOn": ["^compile:js"],
2221
"inputs": ["tsconfig.*", "src/**"],
23-
"outputs": ["dist/**"],
24-
"outputMode": "errors-only"
22+
"outputs": ["dist/**"]
2523
},
2624
"compile:typedefs": {
2725
"dependsOn": ["^compile:typedefs"],
2826
"inputs": ["tsconfig.*", "src/**"],
29-
"outputs": ["dist/**/*.d.ts"],
30-
"outputMode": "errors-only"
27+
"outputs": ["dist/**/*.d.ts"]
3128
},
3229
"publish-packages": {
3330
"cache": false,
@@ -42,8 +39,7 @@
4239
"test:treeshakability:browser",
4340
"test:treeshakability:native",
4441
"test:treeshakability:node"
45-
],
46-
"outputMode": "errors-only"
42+
]
4743
},
4844
"publish-packages-legacy": {
4945
"cache": false,
@@ -56,55 +52,44 @@
5652
"test:prettier",
5753
"test:typecheck",
5854
"test:unit:node"
59-
],
60-
"outputMode": "errors-only"
55+
]
6156
},
6257
"style:fix": {
6358
"inputs": ["*"],
64-
"outputs": ["*"],
65-
"outputMode": "errors-only"
59+
"outputs": ["*"]
6660
},
6761
"test:lint": {
6862
"dependsOn": ["^compile:typedefs"],
6963
"inputs": ["src/**", "test/**"],
70-
"outputs": [],
71-
"outputMode": "errors-only"
64+
"outputs": []
7265
},
7366
"test:live-with-test-validator": {
7467
"dependsOn": ["^compile:js"],
75-
"inputs": ["src/**"],
76-
"outputMode": "errors-only"
68+
"inputs": ["src/**"]
7769
},
7870
"test:prettier": {
79-
"inputs": ["*"],
80-
"outputMode": "errors-only"
71+
"inputs": ["*"]
8172
},
8273
"test:typecheck": {
8374
"dependsOn": ["^compile:typedefs"],
84-
"inputs": ["tsconfig.*", "src/**"],
85-
"outputMode": "errors-only"
75+
"inputs": ["tsconfig.*", "src/**"]
8676
},
8777
"test:unit:browser": {
8878
"dependsOn": ["^compile:js"],
89-
"inputs": ["src/**"],
90-
"outputMode": "errors-only"
79+
"inputs": ["src/**"]
9180
},
9281
"test:unit:node": {
9382
"dependsOn": ["^compile:js"],
94-
"inputs": ["src/**"],
95-
"outputMode": "errors-only"
83+
"inputs": ["src/**"]
9684
},
9785
"test:treeshakability:browser": {
98-
"dependsOn": ["compile:js"],
99-
"outputMode": "errors-only"
86+
"dependsOn": ["compile:js"]
10087
},
10188
"test:treeshakability:native": {
102-
"dependsOn": ["compile:js"],
103-
"outputMode": "errors-only"
89+
"dependsOn": ["compile:js"]
10490
},
10591
"test:treeshakability:node": {
106-
"dependsOn": ["compile:js"],
107-
"outputMode": "errors-only"
92+
"dependsOn": ["compile:js"]
10893
},
10994
"@solana/web3.js#build": {
11095
"dependsOn": [
@@ -118,24 +103,20 @@
118103
"test:typecheck",
119104
"test:unit:node"
120105
],
121-
"outputs": ["doc/**", "declarations/**", "lib/**"],
122-
"outputMode": "errors-only"
106+
"outputs": ["doc/**", "declarations/**", "lib/**"]
123107
},
124108
"@solana/web3.js#clean": {
125-
"outputs": ["doc/**", "declarations/**", "lib/**"],
126-
"outputMode": "errors-only"
109+
"outputs": ["doc/**", "declarations/**", "lib/**"]
127110
},
128111
"@solana/web3.js#compile:docs": {
129112
"dependsOn": ["clean"],
130113
"inputs": ["src/**"],
131-
"outputs": ["doc/**"],
132-
"outputMode": "errors-only"
114+
"outputs": ["doc/**"]
133115
},
134116
"@solana/web3.js#compile:js": {
135117
"dependsOn": ["clean", "^compile:js"],
136118
"inputs": ["babel.config.json", "rollup.config.mjs", "tsconfig.*", "src/**"],
137-
"outputs": ["lib/**"],
138-
"outputMode": "errors-only"
119+
"outputs": ["lib/**"]
139120
},
140121
"@solana/web3.js#compile:typedefs": {
141122
"dependsOn": ["clean", "^compile:typedefs"],
@@ -146,32 +127,26 @@
146127
"test/__shadow-jest-types.d.ts",
147128
"tsconfig.*"
148129
],
149-
"outputs": ["declarations/**", "lib/**/*.d.ts"],
150-
"outputMode": "errors-only"
130+
"outputs": ["declarations/**", "lib/**/*.d.ts"]
151131
},
152132
"@solana/web3.js#test:lint": {
153-
"inputs": ["src/**", "test/**"],
154-
"outputMode": "errors-only"
133+
"inputs": ["src/**", "test/**"]
155134
},
156135
"@solana/web3.js#test:live-with-test-validator": {
157136
"dependsOn": ["^compile:js"],
158-
"inputs": ["src/**", "test/**"],
159-
"outputMode": "errors-only"
137+
"inputs": ["src/**", "test/**"]
160138
},
161139
"@solana/web3.js#test:typecheck": {
162140
"dependsOn": ["^compile:typedefs"],
163-
"inputs": ["src/**", "test/**", "tsconfig.*"],
164-
"outputMode": "errors-only"
141+
"inputs": ["src/**", "test/**", "tsconfig.*"]
165142
},
166143
"@solana/web3.js#test:unit:node": {
167144
"dependsOn": ["^compile:js"],
168-
"inputs": ["src/**", "test/**"],
169-
"outputMode": "errors-only"
145+
"inputs": ["src/**", "test/**"]
170146
},
171147
"@solana/web3.js-legacy-sham#compile:typedefs": {
172148
"dependsOn": ["@solana/web3.js#compile:typedefs", "^compile:typedefs"],
173-
"inputs": ["tsconfig.*", "src/**", "test/**"],
174-
"outputMode": "errors-only"
149+
"inputs": ["tsconfig.*", "src/**", "test/**"]
175150
}
176151
},
177152
"remoteCache": {

0 commit comments

Comments
 (0)