• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

robsimmons / dusa / 14823602762
95%

Build:
DEFAULT BRANCH: main
Ran 04 May 2025 05:32PM UTC
Jobs 1
Files 52
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

04 May 2025 05:31PM UTC coverage: 95.401%. Remained the same
14823602762

push

github

web-flow
Bump esbuild and astro in /docs (#125)

Bumps [esbuild](https://github.com/evanw/esbuild) to 0.25.3 and updates
ancestor dependency
[astro](https://github.com/withastro/astro/tree/HEAD/packages/astro).
These dependencies need to be updated together.

Updates `esbuild` from 0.21.5 to 0.25.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/evanw/esbuild/releases">esbuild's
releases</a>.</em></p>
<blockquote>
<h2>v0.25.3</h2>
<ul>
<li>
<p>Fix lowered <code>async</code> arrow functions before
<code>super()</code> (<a
href="https://redirect.github.com/evanw/esbuild/issues/4141">#4141</a>,
<a
href="https://redirect.github.com/evanw/esbuild/pull/4142">#4142</a>)</p>
<p>This change makes it possible to call an <code>async</code> arrow
function in a constructor before calling <code>super()</code> when
targeting environments without <code>async</code> support, as long as
the function body doesn't reference <code>this</code>. Here's an example
(notice the change from <code>this</code> to <code>null</code>):</p>
<pre lang="js"><code>// Original code
class Foo extends Object {
  constructor() {
    (async () =&gt; await foo())()
    super()
  }
}
<p>// Old output (with --target=es2016)<br />
class Foo extends Object {<br />
constructor() {<br />
(() =&gt; __async(this, null, function* () {<br />
return yield foo();<br />
}))();<br />
super();<br />
}<br />
}</p>
<p>// New output (with --target=es2016)<br />
class Foo extends Object {<br />
constructor() {<br />
(() =&gt; __async(null, null, function* () {<br />
return yield foo();<br />
}))();<br />
super();<br />
}<br />
}<br />
</code></pre></p>
<p>Some background: Arrow functions with the <code>async</code> keyword
are transformed into generator functions for older language targets such
as <code>--target=es2016</code>. Since arrow functions capture
<code>this</code>, the generated code forwards <code>this</code> into
the body of the generator function. However, JavaScri... (continued)

653 of 683 branches covered (95.61%)

Branch coverage included in aggregate %.

3392 of 3557 relevant lines covered (95.36%)

923.42 hits per line

Jobs
ID Job ID Ran Files Coverage
1 14823602762.1 04 May 2025 05:32PM UTC 52
95.4
GitHub Action Run
Source Files on build 14823602762
  • Tree
  • List 52
  • Changed 0
  • Source Changed 0
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line Branch Hits Branch Misses
  • Back to Repo
  • Github Actions Build #14823602762
  • 3cc7ac65 on github
  • Prev Build on main (#14823574691)
  • Next Build on main (#14823771563)
  • Delete
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc