Skip to content

chore(deps): update npm

BIWG Bot requested to merge renovate/npm into main

This MR contains the following updates:

Package Type Update Change
@babel/core (source) devDependencies patch 7.23.6 -> 7.23.7
@babel/preset-env (source) devDependencies patch 7.23.6 -> 7.23.7
@testing-library/jest-dom devDependencies patch 6.1.5 -> 6.1.6
@types/node (source) devDependencies patch 20.10.5 -> 20.10.6
@types/react (source) devDependencies patch 18.2.45 -> 18.2.46
clsx dependencies minor 2.0.0 -> 2.1.0
marked (source) dependencies patch 11.1.0 -> 11.1.1
typescript (source) devDependencies minor 5.2.2 -> 5.3.3

Release Notes

babel/babel (@​babel/core)

v7.23.7

Compare Source

🐛 Bug Fix
🏠 Internal
  • babel-helper-create-class-features-plugin
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
testing-library/jest-dom (@​testing-library/jest-dom)

v6.1.6

Compare Source

Bug Fixes
lukeed/clsx (clsx)

v2.1.0

Compare Source

Features

  • Add new clsx/lite submodule for string-only usage: 1a49142

    This is a 140b version of clsx that is ideal for Tailwind and/or React contexts, which typically follow this clsx usage pattern:

    clsx('foo bar', props.maybe && 'conditional classes', props.className);

    Important: This clsx/lite module ignores all non-string arguments and is therefore not a 1:1 replacement for clsx itself!

    import { clsx } from 'clsx';
    import { clsx as lite } from 'clsx/lite';
    
    // strings-only usage is identical
    clsx('foo', null, 'bar', true && 'baz'); //=> "foo bar baz"
    lite('foo', null, 'bar', true && 'baz'); //=> "foo bar baz"
    
    // clsx/lite ignores all non-strings
    clsx('foo', { a: true, b: false, c: true }); //=> "foo a c"
    lite('foo', { a: true, b: false, c: true }); //=> "foo"

Full Changelog: https://github.com/lukeed/clsx/compare/v2.0.1...v2.1.0

v2.0.1

Compare Source

Patches

  • (perf) Cache arguments.length & array.length for 6% performance gain (#​26): deff09b Adds 5 bytes (+2%) for ~3% avg performance gain Thank you @​jalalazimi

Chores


Full Changelog: https://github.com/lukeed/clsx/compare/v2.0.0...v2.0.1

markedjs/marked (marked)

v11.1.1

Compare Source

Bug Fixes
Microsoft/TypeScript (typescript)

v5.3.3: TypeScript 5.3.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

v5.3.2: TypeScript 5.3

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

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

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

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


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

This MR has been generated by Renovate Bot.

Edited by BIWG Bot

Merge request reports