Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update devdependencies #1242

Merged
merged 1 commit into from
Aug 8, 2022
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 8, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
esbuild ~0.14.53 -> ~0.14.54 age adoption passing confidence
prettier-plugin-organize-imports ~3.0.2 -> ~3.0.3 age adoption passing confidence

Release Notes

evanw/esbuild

v0.14.54

Compare Source

  • Fix optimizations for calls containing spread arguments (#​2445)

    This release fixes the handling of spread arguments in the optimization of /* @​__PURE__ */ comments, empty functions, and identity functions:

    // Original code
    function empty() {}
    function identity(x) { return x }
    /* @​__PURE__ */ a(...x)
    /* @​__PURE__ */ new b(...x)
    empty(...x)
    identity(...x)
    
    // Old output (with --minify --tree-shaking=true)
    ...x;...x;...x;...x;
    
    // New output (with --minify --tree-shaking=true)
    function identity(n){return n}[...x];[...x];[...x];identity(...x);

    Previously esbuild assumed arguments with side effects could be directly inlined. This is almost always true except for spread arguments, which are not syntactically valid on their own and which have the side effect of causing iteration, which might have further side effects. Now esbuild will wrap these elements in an unused array so that they are syntactically valid and so that the iteration side effects are preserved.

simonhaenisch/prettier-plugin-organize-imports

v3.0.3

Compare Source

Fixes a performance regression that was introduced in 3.0.2.


Configuration

📅 Schedule: Branch creation - "before 2am" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner August 8, 2022 14:44
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Aug 8, 2022
@Shinigami92 Shinigami92 enabled auto-merge (squash) August 8, 2022 14:47
@Shinigami92 Shinigami92 requested review from a team August 8, 2022 14:47
@codecov
Copy link

codecov bot commented Aug 8, 2022

Codecov Report

Merging #1242 (e316b3c) into main (ddd0e17) will increase coverage by 0.00%.
The diff coverage is n/a.

@@           Coverage Diff           @@
##             main    #1242   +/-   ##
=======================================
  Coverage   99.62%   99.62%           
=======================================
  Files        2155     2155           
  Lines      236884   236884           
  Branches      990      991    +1     
=======================================
+ Hits       235996   236003    +7     
+ Misses        867      860    -7     
  Partials       21       21           
Impacted Files Coverage Δ
src/modules/internet/user-agent.ts 83.59% <0.00%> (+1.85%) ⬆️

@Shinigami92 Shinigami92 merged commit 7372e9a into main Aug 8, 2022
@renovate renovate bot deleted the renovate/devdependencies branch August 8, 2022 16:06
@ST-DDT ST-DDT added this to the v7 - Current Major milestone Aug 29, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c: dependencies Pull requests that adds/updates a dependency
Projects
No open projects
Status: Done
Development

Successfully merging this pull request may close these issues.

3 participants