Rel1cx / eslint-react

A series of composable ESLint plugins for libraries and frameworks that use React as a UI runtime.
https://eslint-react.xyz
MIT License
242 stars 10 forks source link

build: bump skott from 0.33.2 to 0.34.0 #571

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps skott from 0.33.2 to 0.34.0.

Release notes

Sourced from skott's releases.

skott@0.34.0

Minor Changes

  • #157 0871131 Thanks @​antoine-coulon! - Expose a new rendering module providing a programmatic access to terminal and web visualizations through skott's API.

    This is equivalent to use the CLI such as skott --displayMode=webapp but offers more flexibility for the runtime configuration which suffers from limitations when only using the CLI (some configurations are nearly impossible to represent using strings e.g. providing custom functions), this is why often authors tend to introduce runtime configuration files that CLIs can pick up automatically, thing that we want to avoid with skott, by unifying it's usage either coming from the API or CLI.

    Using the rendering module

    import { defaultConfig } from "skott";
    import { Web, Terminal } from "skott/rendering";
    

    await Web.renderWebApplication( // skott runtime config defaultConfig, // application config { visualization: { granularity: "module", }, watch: true, port: 1111, onListen: (port) => console.log(Listening on port ${port}), open: true, onOpenError: () => console.log(Error when opening the browser), }, );

    await Terminal.renderTerminalApplication(defaultConfig, { displayMode: "graph", exitCodeOnCircularDependencies: 1, showCircularDependencies: true, showUnusedDependencies: true, watch: true, });

Commits
  • 65f879a chore: update versions (#158)
  • 0871131 feat: expose rendering module to provide terminal and web visualizations thro...
  • 5ab375c test(fs-tree-structure): migrate to vitest
  • fbe7eed test(remote-tarball-fetcher): migrate to vitest
  • 6dc4db8 chore: update deps
  • 2c88ab2 ci: bump node version to 20
  • 4ea2a80 docs: update
  • 47f8210 chore(ci): run workspace tests everytime
  • 920a4cf chore: update versions (#154)
  • 2c00723 chore(ci): introduce benchmarks on JS/TS projects to track skott performance ...
  • See full diff in compare view


Dependabot compatibility score

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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
vercel[bot] commented 3 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
eslint-react ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 11, 2024 9:59pm
dependabot[bot] commented 3 months ago

Looks like skott is up-to-date now, so this is no longer needed.