• 0.1.32 ef0c23189d

    chore(deps): update dependency prettier to v3.8.2 (#73)
    CD / Release (push) Successful in 40s

    gitea-actions released this 2026-04-21 10:37:20 +02:00 | 4 commits to main since this release

    This PR contains the following updates:

    Package Change Age Confidence
    prettier (source) 3.8.13.8.2 age confidence

    Release Notes

    prettier/prettier (prettier)

    v3.8.2

    Compare Source

    diff

    Angular: Support Angular v21.2 (#​18722, #​19034 by @​fisker)

    Exhaustive typechecking with @default never;

    <!-- Input -->
    @&#8203;switch (foo) {
      @&#8203;case (1) {}
      @&#8203;default never;
    }
    
    <!-- Prettier 3.8.1 -->
    SyntaxError: Incomplete block "default never". If you meant to write the @&#8203; character, you should use the "&#&#8203;64;" HTML entity instead. (3:3)
    
    <!-- Prettier 3.8.2 -->
    @&#8203;switch (foo) {
      @&#8203;case (1) {}
      @&#8203;default never;
    }
    

    arrow function and instanceof expressions.

    <!-- Input -->
    @&#8203;let fn = (a) =>        a?    1:2;
    
    {{ fn ( a         instanceof b)}}
    
    <!-- Prettier 3.8.1 -->
    @&#8203;let fn = (a) =>        a?    1:2;
    
    {{ fn ( a         instanceof b)}}
    
    <!-- Prettier 3.8.2 -->
    @&#8203;let fn = (a) => (a ? 1 : 2);
    
    {{ fn(a instanceof b) }}
    

    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), 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.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • If you want to rebase/retry this PR, check this box

    This PR has been generated by Renovate Bot.

    Reviewed-on: #73
    Reviewed-by: t.behrendt t.behrendt@noreply.localhost
    Co-authored-by: Renovate Bot renovate@t00n.de
    Co-committed-by: Renovate Bot renovate@t00n.de

    Downloads