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 npm dependencies (non-major) #131

Merged
merged 1 commit into from
Mar 26, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 26, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config 0.36.0 -> 0.37.0 age adoption passing confidence
@nuxtjs/tailwindcss 6.6.0 -> 6.6.4 age adoption passing confidence
eslint-config-prettier 8.7.0 -> 8.8.0 age adoption passing confidence
eslint-plugin-vue (source) 9.9.0 -> 9.10.0 age adoption passing confidence
nuxt 3.3.1 -> 3.3.2 age adoption passing confidence
prettier (source) 2.8.4 -> 2.8.7 age adoption passing confidence
prettier-plugin-tailwindcss 0.2.4 -> 0.2.5 age adoption passing confidence
sass 1.59.3 -> 1.60.0 age adoption passing confidence
sass-loader 13.2.0 -> 13.2.1 age adoption passing confidence
yarn 3.4.1 -> 3.5.0 age adoption passing confidence

Release Notes

antfu/eslint-config

v0.37.0

Compare Source

   🚀 Features
    View changes on GitHub
nuxt-community/tailwindcss-module

v6.6.4

Compare Source

compare changes

🩹 Fixes
  • Use file extension (for esm support) and add missing deps (#​644)
❤️ Contributors

v6.6.3

Compare Source

compare changes

🏡 Chore
  • Using tw default config " (#​636)
❤️ Contributors

v6.6.2

Compare Source

compare changes

📖 Documentation
🏡 Chore
  • Using tw default config (#​636)
❤️ Contributors

v6.6.1

Compare Source

compare changes

🏡 Chore
  • Reducing dependencies (#​634)
  • Update readme (#​640)
  • Move heavy populateMap function to utils (#​637)
  • Add utils to default content path (#​641)
  • Improving types for config (#​635)
❤️ Contributors
prettier/eslint-config-prettier

v8.8.0

Compare Source

vuejs/eslint-plugin-vue

v9.10.0

Compare Source

✨ Enhancements

  • #​2111 Added suggestions for vue/no-template-target-blank rule.

⚙️ Updates

  • #​2112 Changed to use @eslint-community/eslint-utils package.

Full Changelog: vuejs/eslint-plugin-vue@v9.9.0...v9.10.0

nuxt/nuxt

v3.3.2

Compare Source

3.3.2 is a patch release with plenty of bug fixes.

✅ Upgrading

As usual, our recommendation for upgrading is to run:

nuxi upgrade --force

This will refresh your lockfile as well, and ensures that you pull in updates from other dependencies that Nuxt relies on, particularly in the unjs ecosystem.

👉 Changelog

compare changes

🔥 Performance
  • nuxt: Experimentally disable vue server renderer nitro endpoint (#​19825)
🩹 Fixes
  • kit: Provide name to performance.mark() (#​19687)
  • nuxt: Unpause DOM updates on suspense resolve (#​19740)
  • kit: Handle node 14 performance behaviour (#​19733)
  • webpack: Transpile app directory (#​19773)
  • nuxt: Unset context after app is created (#​19753)
  • cli: Watch dist and register restart hook after nuxt is ready (#​19736)
  • nuxt: Ignore falsy modules (#​19684)
  • nuxt: Use h3 utilities to set response status/code (#​19713)
  • nuxt: Add temporary augmentation for webstorm (and docs) (#​19400)
  • nuxt: Handle external navigation to api routes (#​19829)
  • nuxt: Observe slot element in custom nuxt-link (#​19802)
  • nuxt: Directly render server components (#​19605)
  • vite: Support multiple rollup entries (#​19842)
  • nuxt: Ignore schema types that eval to any (#​19835)
  • nuxt: Use prerender cache for islands (#​19822)
  • nuxt: Add missing import in islands template (#​19870)
  • kit: Check if nuxt is restarting before updating templates (#​19830)
  • test-utils: Allow overriding nitro options (#​19872)
  • kit: Add legacy entrypoints for pre v3.3 usage (#​19874)
📖 Documentation
🏡 Chore
✅ Tests
🤖 CI
❤️ Contributors
prettier/prettier

v2.8.7

Compare Source

diff

Allow multiple decorators on same getter/setter (#​14584 by @​fisker)
// Input
class A {
  @​decorator()
  get foo () {}
  
  @​decorator()
  set foo (value) {}
}

// Prettier 2.8.6
SyntaxError: Decorators cannot be applied to multiple get/set accessors of the same name. (5:3)
  3 |   get foo () {}
  4 |   
> 5 |   @​decorator()
    |   ^^^^^^^^^^^^
  6 |   set foo (value) {}
  7 | }

// Prettier 2.8.7
class A {
  @​decorator()
  get foo() {}

  @​decorator()
  set foo(value) {}
}

v2.8.6

Compare Source

diff

Allow decorators on private members and class expressions (#​14548 by @​fisker)
// Input
class A {
  @​decorator()
  #privateMethod () {}
}

// Prettier 2.8.5
SyntaxError: Decorators are not valid here. (2:3)
  1 | class A {
> 2 |   @​decorator()
    |   ^^^^^^^^^^^^
  3 |   #privateMethod () {}
  4 | }

// Prettier 2.8.6
class A {
  @​decorator()
  #privateMethod() {}
}

v2.8.5

Compare Source

diff

Support TypeScript 5.0 (#​14391 by @​fisker, #​13819 by @​fisker, @​sosukesuzuki)

TypeScript 5.0 introduces two new syntactic features:

  • const modifiers for type parameters
  • export type * declarations
Add missing parentheses for decorator (#​14393 by @​fisker)
// Input
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}

// Prettier 2.8.4
class Person {
  @​myDecoratorArray[0]
  greet() {}
}

// Prettier 2.8.5
class Person {
  @​(myDecoratorArray[0])
  greet() {}
}
Add parentheses for TypeofTypeAnnotation to improve readability (#​14458 by @​fisker)
// Input
type A = (typeof node.children)[];

// Prettier 2.8.4
type A = typeof node.children[];

// Prettier 2.8.5
type A = (typeof node.children)[];
Support max_line_length=off when parsing .editorconfig (#​14516 by @​josephfrazier)

If an .editorconfig file is in your project and it sets max_line_length=off for the file you're formatting,
it will be interpreted as a printWidth of Infinity rather than being ignored
(which previously resulted in the default printWidth of 80 being applied, if not overridden by Prettier-specific configuration).

<!-- Input -->
<div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/>

<!-- Prettier 2.8.4 -->
<div
  className="HelloWorld"
  title={`You are visitor number ${num}`}
  onMouseOver={onMouseOver}
/>;

<!-- Prettier 2.8.5 -->
<div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />;
tailwindlabs/prettier-plugin-tailwindcss

v0.2.5

Compare Source

Fixed
  • Fix class sorting in capture liquid tag (#​131)
sass/dart-sass

v1.60.0

Compare Source

  • Add support for the pi, e, infinity, -infinity, and NaN constants in
    calculations. These will be interpreted as the corresponding numbers.

  • Add support for unknown constants in calculations. These will be interpreted
    as unquoted strings.

  • Serialize numbers with value infinity, -infinity, and NaN to calc()
    expressions rather than CSS-invalid identifiers. Numbers with complex units
    still can't be serialized.

webpack-contrib/sass-loader

v13.2.1

Compare Source

yarnpkg/berry

v3.5.0

Compare Source


Configuration

📅 Schedule: Branch creation - "before 6am on the first day of the month" (UTC), 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.

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


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

This PR has been generated by Mend Renovate. View repository job log here.

@vercel
Copy link

vercel bot commented Mar 26, 2023

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

Name Status Preview Comments Updated
oku-nuxt3-template ✅ Ready (Inspect) Visit Preview 💬 Add your feedback Mar 26, 2023 at 4:17AM (UTC)

@productdevbook productdevbook merged commit e1f24eb into master Mar 26, 2023
@renovate renovate bot deleted the renovate/npm-dependencies-(non-major) branch March 26, 2023 15:59
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.

1 participant