// This script helps extract the benchmark logs that are between the `==========` lines. // They are a convention defined in the `./bench/_template.js` file, which are used to log // out with the `!bench` command. See `/.github/workflows/benchmark.yml` to see how it's used. const benchLogs = process.argv[2]; const resultRegex = /==========(.*?)==========/gs; let processedLog = ''; let m; while ((m = resultRegex.exec(benchLogs))) { processedLog += m[1] + '\n'; } console.log(processedLog); ef='/'>index : astro
Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.devcontainer/framework-preact (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2023-08-01feat: add logging for when hydrate's JSON parse fails (#7887)Gravatar Sam Hulick 2-3/+28
2023-08-01Fix prefetch test fail (#7902)Gravatar Bjorn Lu 1-0/+2
2023-08-01[ci] formatGravatar bluwy 4-13/+28