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 dependency prettier to ^3.5.3 #73

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
prettier (source) ^3.2.4 -> ^3.5.3 age adoption passing confidence

Release Notes

prettier/prettier (prettier)

v3.5.3

Compare Source

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

v3.5.0

Compare Source

diff

🔗 Release Notes

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@&#8203;(foo`tagged template`)
class X {}

// Prettier 3.3.2
@&#8203;foo`tagged template`
class X {}

// Prettier 3.3.3
@&#8203;(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@&#8203;let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.0

Compare Source

diff

🔗 Release Notes

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v3.2.0, we introduced "jsonc" parser which adds trailing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .prettierrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}

Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

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


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

This PR was generated by Mend Renovate. View the repository job log.

Copy link

changeset-bot bot commented Apr 1, 2024

⚠️ No Changeset found

Latest commit: ab3885d

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

github-actions bot commented Apr 1, 2024

size-limit report 📦

Path Size
lib/index.js 36 B (0%)

Copy link

github-actions bot commented Apr 1, 2024

Deploy preview for lib-boilerplate ready!

✅ Preview
https://lib-boilerplate-d8qtovves-jounqins-projects.vercel.app

Built with commit ab3885d.
This pull request is being automatically deployed with vercel-action

@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 8e16e28 to 4de383c Compare June 1, 2024 18:16
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.2.5 chore(deps): update dependency prettier to ^3.3.0 Jun 1, 2024
Copy link

codesandbox-ci bot commented Jun 1, 2024

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 4de383c to 0b7f1f8 Compare June 5, 2024 11:23
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.3.0 chore(deps): update dependency prettier to ^3.3.1 Jun 5, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 0b7f1f8 to b942b60 Compare June 11, 2024 07:38
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.3.1 chore(deps): update dependency prettier to ^3.3.2 Jun 11, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from b942b60 to dc3945e Compare July 13, 2024 12:28
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.3.2 chore(deps): update dependency prettier to ^3.3.3 Jul 13, 2024
Copy link

codecov bot commented Jul 13, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 100.00%. Comparing base (b36ebd0) to head (659f9f5).

Additional details and impacted files
@@            Coverage Diff            @@
##              main       #73   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            1         1           
  Lines            1         1           
  Branches         1         1           
=========================================
  Hits             1         1           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/prettier-3.x branch from dc3945e to fa95073 Compare November 26, 2024 05:31
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.3.3 chore(deps): update dependency prettier to ^3.4.0 Nov 26, 2024
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.4.0 chore(deps): update dependency prettier to ^3.4.1 Nov 26, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from fa95073 to 1fea7b7 Compare November 26, 2024 14:30
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 1fea7b7 to 746aa0f Compare December 4, 2024 11:34
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.4.1 chore(deps): update dependency prettier to ^3.4.2 Dec 4, 2024
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 746aa0f to 5569322 Compare February 9, 2025 14:06
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.4.2 chore(deps): update dependency prettier to ^3.5.0 Feb 9, 2025
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.5.0 chore(deps): update dependency prettier to ^3.5.1 Feb 13, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 5569322 to ace471e Compare February 13, 2025 16:47
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from ace471e to 659f9f5 Compare February 22, 2025 05:59
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.5.1 chore(deps): update dependency prettier to ^3.5.2 Feb 22, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 659f9f5 to ab3885d Compare March 3, 2025 03:10
@renovate renovate bot changed the title chore(deps): update dependency prettier to ^3.5.2 chore(deps): update dependency prettier to ^3.5.3 Mar 3, 2025
Copy link

New, updated, and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@aashutoshrathi/[email protected] None 0 10.9 kB aashutoshrathi
npm/@babel/[email protected] None 0 6.56 kB nicolo-ribaudo
npm/@babel/[email protected] None 0 21.6 kB nicolo-ribaudo
npm/@babel/[email protected] None 0 7.03 kB nicolo-ribaudo
npm/@babel/[email protected] None 0 14.1 kB nicolo-ribaudo
npm/@babel/[email protected] None 0 31.6 kB nicolo-ribaudo
npm/@babel/[email protected] None 0 18.4 kB nicolo-ribaudo
npm/@commitlint/[email protected] None 0 12.2 kB escapedcat
npm/@commitlint/[email protected] None 0 3.97 kB escapedcat
npm/@commitlint/[email protected] None 0 9.11 kB escapedcat
npm/@commitlint/[email protected] None 0 4.57 kB escapedcat
npm/@commitlint/[email protected] None 0 12.4 kB escapedcat
npm/@commitlint/[email protected] None 0 84.1 kB escapedcat
npm/@commitlint/[email protected] None 0 3.98 kB escapedcat
npm/@csstools/[email protected] None 0 70.6 kB romainmenke
npm/@csstools/[email protected] None 0 60.2 kB romainmenke
npm/@csstools/[email protected] None 0 94.3 kB romainmenke
npm/@humanwhocodes/[email protected] None 0 53 kB nzakas
npm/@jridgewell/[email protected] None 0 79.2 kB jridgewell
npm/[email protected]1.1.11 None 0 11.1 kB juliangruber
npm/[email protected] None +1 52.5 kB ljharb
npm/[email protected] None 0 10.9 kB sindresorhus
npm/[email protected] None 0 32.3 kB oss-bot
npm/[email protected] None 0 17 kB jorgebucaran
npm/[email protected] None 0 12.6 kB codex-
npm/[email protected] None 0 95.2 kB siilwyn
npm/[email protected] None +1 16.8 kB anandthakker
npm/[email protected] None 0 5.83 kB ludovicofischer
npm/[email protected] None 0 125 kB pierrec
npm/[email protected] None 0 11.4 kB feedic
npm/[email protected] None 0 75.3 kB feedic
npm/[email protected] network 0 162 kB feedic
npm/[email protected] None 0 18.3 kB mafintosh
npm/[email protected] None 0 413 kB feedic
npm/[email protected] Transitive: eval +2 2.1 MB ljharb
npm/[email protected] None 0 73.4 kB lpinca
npm/[email protected] None 0 38.9 kB matteo.collina
npm/[email protected] None 0 6.94 kB wooorm
npm/[email protected] shell 0 14.4 kB oss-bot
npm/[email protected] None 0 15.9 kB wooorm
npm/[email protected] environment, filesystem +1 15.2 kB sindresorhus
npm/[email protected] None 0 26.6 kB lukekarrys
npm/[email protected] None 0 2.93 kB maxogden
npm/[email protected] None 0 3.21 kB sindresorhus
npm/[email protected] None 0 31.9 kB evilebottnawi
npm/[email protected] None 0 6.89 kB jdalton
npm/[email protected] None 0 9.29 kB jdalton
npm/[email protected] None 0 25 kB jdalton
npm/[email protected] None 0 7.7 kB sindresorhus
npm/[email protected] None 0 619 kB wooorm
npm/[email protected] None 0 54.5 kB ljharb
npm/[email protected] None 0 6.03 kB sindresorhus
npm/[email protected] None 0 3.75 kB electerious
npm/[email protected] None +1 90 kB audrey.e
npm/[email protected] environment 0 48.5 kB sindresorhus
npm/[email protected] None 0 25.1 kB wooorm
npm/[email protected]3.0.0 None 0 3.47 kB sindresorhus
npm/[email protected] None 0 151 kB ludovicofischer
npm/[email protected] None 0 8.41 kB ludovicofischer
npm/[email protected] None 0 12 kB ludovicofischer
npm/[email protected] None 0 10.7 kB ludovicofischer
npm/[email protected] None 0 6.83 kB ludovicofischer
npm/[email protected] None 0 4.26 kB ludovicofischer
npm/[email protected] None 0 6.58 kB ludovicofischer
npm/[email protected] None 0 49.5 kB ludovicofischer
npm/[email protected] None 0 23.7 kB ludovicofischer
npm/[email protected] None 0 16.1 kB ludovicofischer
npm/[email protected] None 0 9.92 kB ludovicofischer
npm/[email protected] None 0 6.69 kB ludovicofischer
npm/[email protected] None 0 9.75 kB ludovicofischer
npm/[email protected] None 0 4.29 kB ludovicofischer
npm/[email protected] None 0 5.7 kB ludovicofischer
npm/[email protected] None 0 8.32 kB ludovicofischer
npm/[email protected] None 0 6.93 kB ludovicofischer
npm/[email protected] None 0 11.2 kB ludovicofischer
npm/[email protected] None 0 6.31 kB ludovicofischer
npm/[email protected] None 0 5.92 kB ludovicofischer
npm/[email protected] None 0 10.7 kB ludovicofischer
npm/[email protected] None 0 5.83 kB ludovicofischer
npm/[email protected] None 0 28.4 kB ludovicofischer
npm/[email protected] None 0 16.9 kB ludovicofischer
npm/[email protected] None 0 9 kB ludovicofischer
npm/[email protected] None 0 10.2 kB ludovicofischer
npm/[email protected] None 0 4.45 kB ludovicofischer
npm/[email protected] None 0 5.84 kB liushuping
npm/[email protected] None 0 15.9 kB borewit
npm/[email protected] None 0 9.14 kB wooorm
npm/[email protected] None 0 9.49 kB wooorm
npm/[email protected] None 0 12.7 kB wooorm
npm/[email protected] None 0 9.01 kB wooorm
npm/[email protected] None 0 9.87 kB wooorm
npm/[email protected] None 0 8.57 kB wooorm
npm/[email protected] None 0 9.04 kB wooorm
npm/[email protected] None 0 9.41 kB wooorm
npm/[email protected] None 0 13.8 kB wooorm
npm/[email protected] None 0 16.5 kB wooorm
npm/[email protected] None 0 10.3 kB wooorm
npm/[email protected] None 0 10.8 kB wooorm
npm/[email protected] None 0 16.9 kB wooorm
npm/[email protected] None 0 14.5 kB wooorm
npm/[email protected] None 0 10 kB wooorm
npm/[email protected] None 0 17.7 kB wooorm
npm/[email protected] None 0 10.8 kB wooorm
npm/[email protected] None 0 11 kB wooorm
npm/[email protected] None 0 9.06 kB wooorm
npm/[email protected] None 0 9.48 kB wooorm
npm/[email protected] None 0 8.45 kB wooorm
npm/[email protected] None 0 8.06 kB wooorm
npm/[email protected] None 0 9.76 kB wooorm
npm/[email protected] None 0 7.92 kB wooorm
npm/[email protected] None 0 8.15 kB wooorm
npm/[email protected] None 0 11 kB wooorm
npm/[email protected] None 0 9.98 kB wooorm
npm/[email protected] None 0 8.88 kB wooorm
npm/[email protected] None 0 9.55 kB wooorm
npm/[email protected] None 0 9.93 kB wooorm
npm/[email protected] None 0 10.2 kB wooorm
npm/[email protected] None 0 9.18 kB wooorm
npm/[email protected] None 0 9.13 kB wooorm
npm/[email protected] None 0 11.8 kB wooorm
npm/[email protected] None 0 20.9 kB wooorm
npm/[email protected] None 0 9.23 kB wooorm
npm/[email protected] None 0 12.3 kB wooorm
npm/[email protected] None 0 15.1 kB wooorm
npm/[email protected] None 0 12.2 kB wooorm
npm/[email protected] None 0 12 kB wooorm
npm/[email protected] None 0 21.5 kB wooorm
npm/[email protected] None 0 12.6 kB wooorm
npm/[email protected] None 0 9.88 kB wooorm
npm/[email protected] None 0 12.6 kB wooorm
npm/[email protected] None 0 24 kB davidmarkclements
npm/[email protected] filesystem 0 26 kB wooorm
npm/[email protected] None 0 16.8 kB wooorm
npm/[email protected] None 0 111 kB sindresorhus
npm/[email protected] None +1 115 kB wooorm
npm/[email protected] None 0 11.5 kB sindresorhus

🚮 Removed packages: npm/@babel/[email protected], npm/@bcoe/[email protected], npm/@cspotcode/[email protected], npm/@istanbuljs/[email protected], npm/@jest/[email protected], npm/@pkgjs/[email protected], npm/@sinclair/[email protected], npm/@tsconfig/[email protected], npm/@tsconfig/[email protected], npm/@tsconfig/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected]

View full report↗︎

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants