[PR #171] [CLOSED] chore(deps-dev): bump nuxt-windicss from 1.2.3 to 2.0.1 #178

Closed
opened 2025-12-01 17:06:11 +01:00 by arthur · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ArthurDanjou/website-old/pull/171
Author: @dependabot[bot]
Created: 10/18/2021
Status: Closed

Base: masterHead: dependabot/npm_and_yarn/nuxt-windicss-2.0.1


📝 Commits (1)

  • 3b52328 chore(deps-dev): bump nuxt-windicss from 1.2.3 to 2.0.1

📊 Changes

2 files changed (+288 additions, -89 deletions)

View changed files

📝 package.json (+1 -1)
📝 yarn.lock (+287 -88)

📄 Description

Bumps nuxt-windicss from 1.2.3 to 2.0.1.

Release notes

Sourced from nuxt-windicss's releases.

Release 2.0.1

Bug fix 🐛

  • fix(nuxt3): fixes webpack 5 windi resolutuon bug 7dc2e36, fixed #124

Release 2.0.0

Features 🚀

Nuxt v3/ Nuxt Bridge compatible

  • migrated to @​nuxt/kit
  • exposes module meta

See Live example on StackBlitz

WindiCSS Analysis

windicss-analysis

Enabled via config, supported in all nuxt versions.

export default defineNuxtConfig({
  buildModules: [
    'nuxt-windicss',
  ],
  windicss: {
    analyze: true
  }
})

Better TypeScript support

Modify your tsconfig.json to use it.

{
  "compilerOptions": {
    "types": [
      "nuxt-windicss"
    ]
  }
}

Chore 🧹

  • Build now using unbuild
  • Project is now a monorepo supporting workspaces
  • Major project code refactoring

... (truncated)

Commits
  • ca76a69 Release 2.0.1
  • 8e2231d Merge branch 'master' of github.com:windicss/nuxt-windicss-module into fix/pr...
  • 5359af0 Fix/prefix virtual windi path (#127)
  • 61863f2 fix: run linting
  • 907b665 Merge branch 'master' of github.com:windicss/nuxt-windicss-module into fix/pr...
  • 6ebea48 fix: prefix path with @ to fix webpack5 protocol transform (#126)
  • 7dc2e36 fix: specifically remap when it's nuxt3 and webpack 5, avoid breaking other b...
  • eb9571a fix: prefix path with @ to fix webpack5 protocol transform
  • 01753c5 chore: improve analyze documentation
  • e731143 Release 2.0.0
  • Additional commits viewable 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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ArthurDanjou/website-old/pull/171 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/18/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/nuxt-windicss-2.0.1` --- ### 📝 Commits (1) - [`3b52328`](https://github.com/ArthurDanjou/website-old/commit/3b5232831d6a6303b2ca8241428acb57af702827) chore(deps-dev): bump nuxt-windicss from 1.2.3 to 2.0.1 ### 📊 Changes **2 files changed** (+288 additions, -89 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+1 -1) 📝 `yarn.lock` (+287 -88) </details> ### 📄 Description Bumps [nuxt-windicss](https://github.com/windicss/nuxt-windicss-module) from 1.2.3 to 2.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/windicss/nuxt-windicss-module/releases">nuxt-windicss's releases</a>.</em></p> <blockquote> <h2>Release 2.0.1</h2> <h2>Bug fix :bug:</h2> <ul> <li>fix(nuxt3): fixes webpack 5 windi resolutuon bug <a href="https://github.com/windicss/nuxt-windicss-module/commit/7dc2e36a8416bbddfbda83adc537bef1575cbb53"><code>7dc2e36</code></a>, fixed <a href="https://github-redirect.dependabot.com/windicss/nuxt-windicss-module/issues/124">#124</a></li> </ul> <h2>Release 2.0.0</h2> <h2>Features :rocket:</h2> <h3>Nuxt v3/ Nuxt Bridge compatible</h3> <ul> <li>migrated to <code>@​nuxt/kit</code></li> <li>exposes module meta</li> </ul> <p>See <a href="https://stackblitz.com/edit/nuxt3-windicss?file=app.vue">Live example on StackBlitz</a></p> <h3>WindiCSS Analysis</h3> <p><strong><a href="https://github.com/windicss/windicss-analysis">windicss-analysis</a></strong></p> <p>Enabled via config, supported in all nuxt versions.</p> <pre lang="ts"><code>export default defineNuxtConfig({ buildModules: [ 'nuxt-windicss', ], windicss: { analyze: true } }) </code></pre> <h3>Better TypeScript support</h3> <p>Modify your <code>tsconfig.json</code> to use it.</p> <pre lang="ts"><code>{ &quot;compilerOptions&quot;: { &quot;types&quot;: [ &quot;nuxt-windicss&quot; ] } } </code></pre> <h2>Chore :broom:</h2> <ul> <li>Build now using <a href="https://github.com/unjs/unbuild">unbuild</a></li> <li>Project is now a monorepo supporting workspaces</li> <li>Major project code refactoring</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/windicss/nuxt-windicss-module/commit/ca76a69cbcb5472a3c210aac57841ac08d061392"><code>ca76a69</code></a> Release 2.0.1</li> <li><a href="https://github.com/windicss/nuxt-windicss-module/commit/8e2231dd6f8d6a8f74e17fadb7516f9640b1a2e7"><code>8e2231d</code></a> Merge branch 'master' of github.com:windicss/nuxt-windicss-module into fix/pr...</li> <li><a href="https://github.com/windicss/nuxt-windicss-module/commit/5359af041c226ca8a83d66d8ea76180e97eefc9b"><code>5359af0</code></a> Fix/prefix virtual windi path (<a href="https://github-redirect.dependabot.com/windicss/nuxt-windicss-module/issues/127">#127</a>)</li> <li><a href="https://github.com/windicss/nuxt-windicss-module/commit/61863f27aa021e103dac04346d3dc5511ec0f61d"><code>61863f2</code></a> fix: run linting</li> <li><a href="https://github.com/windicss/nuxt-windicss-module/commit/907b665bf28652801a77f5d8fb59f9702d732057"><code>907b665</code></a> Merge branch 'master' of github.com:windicss/nuxt-windicss-module into fix/pr...</li> <li><a href="https://github.com/windicss/nuxt-windicss-module/commit/6ebea487533f82ec2d3a9ba9a229ca103c226a92"><code>6ebea48</code></a> fix: prefix path with @ to fix webpack5 protocol transform (<a href="https://github-redirect.dependabot.com/windicss/nuxt-windicss-module/issues/126">#126</a>)</li> <li><a href="https://github.com/windicss/nuxt-windicss-module/commit/7dc2e36a8416bbddfbda83adc537bef1575cbb53"><code>7dc2e36</code></a> fix: specifically remap when it's nuxt3 and webpack 5, avoid breaking other b...</li> <li><a href="https://github.com/windicss/nuxt-windicss-module/commit/eb9571ae2e0d6c624a2410ec9e09ff64c38d70e6"><code>eb9571a</code></a> fix: prefix path with @ to fix webpack5 protocol transform</li> <li><a href="https://github.com/windicss/nuxt-windicss-module/commit/01753c5f51fdf003a96b9414127c42af672db843"><code>01753c5</code></a> chore: improve analyze documentation</li> <li><a href="https://github.com/windicss/nuxt-windicss-module/commit/e731143956c700fe29730afdbfa6d3df246d9f92"><code>e731143</code></a> Release 2.0.0</li> <li>Additional commits viewable in <a href="https://github.com/windicss/nuxt-windicss-module/compare/1.2.3...2.0.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=nuxt-windicss&package-manager=npm_and_yarn&previous-version=1.2.3&new-version=2.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
arthur added the pull-request label 2025-12-01 17:06:11 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: arthur/website-old#178