cacheable #jest configuration using wireit. Using jestresults as output means that cacheing works regardless of args you pass. npm rest -- SomeFile will cache differently then npm test, etc
{
"wireit": {
"test": {
"command": "jest --json --outputFile jestresults.json",
"files": [
"src/**"
],
"output": [
"jestresults.json"
]
}
}
}
#wireit visualizer now let's you filter the tree down by selecting a node. Helpful when you have a large complex build graph. I think I could even make this into a visual build editor.
I created a simple POC for a wireit visualizer using mermaidjs.
Really impressed with the #Wireit team 💪
They solved an issue in just 2 days 😳
https://github.com/google/wireit/issues/543#issue-1453065362