Skip to content

Commit

Permalink
Strip outputs from the Turborepo config, because omitting it is the…
Browse files Browse the repository at this point in the history
… same as passing an empty array (#2368)
  • Loading branch information
steveluscher committed Mar 23, 2024
1 parent 99a9cbe commit c03a8d5
Showing 1 changed file with 13 additions and 26 deletions.
39 changes: 13 additions & 26 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@
"test:treeshakability:browser",
"test:treeshakability:native",
"test:treeshakability:node"
],
"outputs": []
]
},
"publish-packages-legacy": {
"cache": false,
Expand All @@ -63,62 +62,50 @@
"test:prettier",
"test:typecheck",
"test:unit:node"
],
"outputs": []
]
},
"style:fix": {
"inputs": ["*"],
"outputs": ["*"]
},
"test:lint": {
"inputs": ["src/**", "test/**"],
"outputs": []
"inputs": ["src/**", "test/**"]
},
"test:live-with-test-validator": {
"dependsOn": ["^compile:js"],
"inputs": ["babel.config.json", "src/**", "test/**"],
"outputs": []
"inputs": ["babel.config.json", "src/**", "test/**"]
},
"test:prettier": {
"inputs": ["src/**", "test/**"],
"outputs": []
"inputs": ["src/**", "test/**"]
},
"test:typecheck": {
"dependsOn": ["^compile:typedefs"],
"inputs": ["tsconfig.*", "src/**", "test/**"],
"outputs": []
"inputs": ["tsconfig.*", "src/**", "test/**"]
},
"test:unit:browser": {
"dependsOn": ["^compile:js"],
"inputs": ["src/**"],
"outputs": []
"inputs": ["src/**"]
},
"test:unit:node": {
"dependsOn": ["^compile:js"],
"inputs": ["src/**"],
"outputs": []
"inputs": ["src/**"]
},
"test:treeshakability:browser": {
"dependsOn": ["compile:js"],
"outputs": []
"dependsOn": ["compile:js"]
},
"test:treeshakability:native": {
"dependsOn": ["compile:js"],
"outputs": []
"dependsOn": ["compile:js"]
},
"test:treeshakability:node": {
"dependsOn": ["compile:js"],
"outputs": []
"dependsOn": ["compile:js"]
},
"@solana/web3.js#test:unit:node": {
"dependsOn": ["^compile:js"],
"inputs": ["babel.config.json", "src/**", "test/**"],
"outputs": []
"inputs": ["babel.config.json", "src/**", "test/**"]
},
"@solana/web3.js-legacy-sham#compile:typedefs": {
"dependsOn": ["@solana/web3.js#compile:typedefs", "^compile:typedefs"],
"inputs": ["tsconfig.*", "src/**", "test/**"],
"outputs": []
"inputs": ["tsconfig.*", "src/**", "test/**"]
}
},
"remoteCache": {
Expand Down

0 comments on commit c03a8d5

Please sign in to comment.