Skip to content

v0.6.0

Compare
Choose a tag to compare
@aomarks aomarks released this 01 Jul 20:46
· 6 commits to main since this release
ef7c3f1

[0.6.0] 2022-07-01

  • [BREAKING] Benchmark and root paths are now interpreted relative to the
    location of the config file, instead of the current working directory.

    For example, a config at path <repo>/benchmarks/foo/tachometer.json that
    used to look as follows, and had to be run with <repo> as the cwd:

    {
      "root": ".",
      "benchmarks": [
        {
          "url": "benchmarks/foo/index.html"
        }
      ]
    }

    Should now look like this, and can be run from any cwd:

    {
      "root": "../..",
      "benchmarks": [
        {
          "url": "foo.html"
        }
      ]
    }