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): bump the deps group across 1 directory with 4 updates #3484

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 29, 2024

Bumps the deps group with 4 updates in the /react-farm-fe-ts directory: clsx, @farmfe/cli, @farmfe/core and @farmfe/plugin-react.

Updates clsx from 1.2.1 to 2.1.1

Release notes

Sourced from clsx's releases.

v2.1.1

Patches

  • (types) Include bigint in ClassValue type: (#96): 3d960ab Accommodates recent @types/react changes to ReactNode. Thank you @​ViliamKopecky~!

Chores

  • Add licenses.dev badge: 684509c This service recursively analyzes entire dependency graphs to ensure that a package (or your project) is using permissive licenses. For example, here's a results table for polka@next and a larger astro example.

Full Changelog: lukeed/clsx@v2.1.0...v2.1.1

v2.1.0

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: lukeed/clsx@v2.0.1...v2.1.0

v2.0.1

Patches

  • (perf) Cache arguments.length & array.length for 6% performance gain (#26): deff09b

... (truncated)

Commits

Updates @farmfe/cli from 0.5.11 to 1.0.4

Release notes

Sourced from @​farmfe/cli's releases.

@​farmfe/cli@​1.0.4

Patch Changes

  • 5f484c5e: Re-prompting for the project name when illegal project name is provided
Commits

Updates @farmfe/core from 0.14.18 to 1.4.5

Release notes

Sourced from @​farmfe/core's releases.

@​farmfe/core@​1.4.5

Patch Changes

  • 376fd9d4: fix cjs 2 esm entry omit default reexport

@​farmfe/core@​1.4.4

Patch Changes

  • 94451ae6: fix: disable inline scripts
  • b05a2c84: fix bundle export cjs entry file

@​farmfe/core@​1.4.3

Patch Changes

  • c4ff67a2: Fix external alias #1957
  • c4ff67a2: Fix import * as xx tree shaking issue

@​farmfe/core@​1.4.2

Patch Changes

  • 3085d644: judgement node environment with check input value

@​farmfe/core@​1.4.1

Patch Changes

  • Updated dependencies [829d0945]
    • @​farmfe/runtime@​0.12.9

@​farmfe/core@​1.4.0

Minor Changes

  • 7d86847c: Support tree shake import * as ns from './xxx'. ./xxx can be tree-shaken if following rules are met:

    • ns is used as member prop, example: ns.a
    • ns is used as member literal computed, example: ns['a']

    For example:

    // b.ts
    export const a = 1;
    export const b = 2;
    // a.ts
    import * as ns from "./b";
    console.log(ns.a);
    console.log(ns["a"]);

... (truncated)

Commits

Updates @farmfe/plugin-react from 0.4.5 to 1.2.6

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the deps group with 4 updates in the /react-farm-fe-ts directory: [clsx](https://github.com/lukeed/clsx), [@farmfe/cli](https://github.com/farm-fe/farm), [@farmfe/core](https://github.com/farm-fe/farm) and @farmfe/plugin-react.


Updates `clsx` from 1.2.1 to 2.1.1
- [Release notes](https://github.com/lukeed/clsx/releases)
- [Commits](lukeed/clsx@v1.2.1...v2.1.1)

Updates `@farmfe/cli` from 0.5.11 to 1.0.4
- [Release notes](https://github.com/farm-fe/farm/releases)
- [Changelog](https://github.com/farm-fe/farm/blob/main/release-plz.toml)
- [Commits](https://github.com/farm-fe/farm/compare/@farmfe/[email protected]...@farmfe/[email protected])

Updates `@farmfe/core` from 0.14.18 to 1.4.5
- [Release notes](https://github.com/farm-fe/farm/releases)
- [Changelog](https://github.com/farm-fe/farm/blob/main/release-plz.toml)
- [Commits](https://github.com/farm-fe/farm/compare/@farmfe/[email protected]...@farmfe/[email protected])

Updates `@farmfe/plugin-react` from 0.4.5 to 1.2.6

---
updated-dependencies:
- dependency-name: clsx
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@farmfe/cli"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@farmfe/core"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: "@farmfe/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 29, 2024
Copy link

codesandbox bot commented Nov 29, 2024

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

Copy link

github-actions bot commented Nov 29, 2024

This is a helpful bot that generates a list of changed templates!

Updated Examples

/react-farm-fe-ts

react-farm-fe-ts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants