mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Here is everything you need to know about this update. Please take a good look at what changed and the test results before merging this pull request. ### What changed? #### ✳️ @playwright/test (1.55.0 → 1.55.1) · [Repo](https://github.com/Microsoft/playwright) <details> <summary>Release Notes</summary> <h4><a href="https://github.com/microsoft/playwright/releases/tag/v1.55.1">1.55.1</a></h4> <blockquote><h3 dir="auto">Highlights</h3> <p dir="auto"><a href="https://bounce.depfu.com/github.com/microsoft/playwright/issues/37479">#37479</a> - [Bug]: Upgrade Chromium to 140.0.7339.186.<br> <a href="https://bounce.depfu.com/github.com/microsoft/playwright/issues/37147">#37147</a> - [Regression]: Internal error: step id not found.<br> <a href="https://bounce.depfu.com/github.com/microsoft/playwright/issues/37146">#37146</a> - [Regression]: HTML reporter displays a broken chip link when there are no projects.<br> <a href="https://bounce.depfu.com/github.com/microsoft/playwright/pull/37137">#37137</a> - Revert "fix(a11y): track inert elements as hidden".</p> <h2 dir="auto">Browser Versions</h2> <ul dir="auto"> <li>Chromium 140.0.7339.186</li> <li>Mozilla Firefox 141.0</li> <li>WebKit 26.0</li> </ul> <p dir="auto">This version was also tested against the following stable channels:</p> <ul dir="auto"> <li>Google Chrome 139</li> <li>Microsoft Edge 139</li> </ul></blockquote> <p><em>Does any of this look wrong? <a href="https://depfu.com/packages/npm/@playwright%2Ftest/feedback">Please let us know.</a></em></p> </details> <details> <summary>Commits</summary> <p><a href="f992162f04...ae51df7a35">See the full diff on Github</a>. The new version differs by 7 commits:</p> <ul> <li><a href="ae51df7a35"><code>chore: mark v1.55.1 (#37530)</code></a></li> <li><a href="86dde294ce"><code>feat(chromium): roll to r1193 (#37529)</code></a></li> <li><a href="86328bc9f4"><code>chore: do not use -k option (#37532)</code></a></li> <li><a href="63799ba683"><code>cherry-pick(#37214): docs: fix method names in release notes</code></a></li> <li><a href="21e29a42ab"><code>cherry-pick(#37153): fix(html): don't display a chip with empty content with no projects</code></a></li> <li><a href="ba62e6ab0d"><code>cherry-pick(#37149): fix(test): attaching in boxed fixture</code></a></li> <li><a href="25bb073f26"><code>cherry-pick(#37137): Revert "fix(a11y): track inert elements as hidden (#36947)"</code></a></li> </ul> </details> ---  [Depfu](https://depfu.com) will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with `@depfu rebase`. <details><summary>All Depfu comment commands</summary> <blockquote><dl> <dt>@depfu rebase</dt><dd>Rebases against your default branch and redoes this update</dd> <dt>@depfu recreate</dt><dd>Recreates this PR, overwriting any edits that you've made to it</dd> <dt>@depfu merge</dt><dd>Merges this PR once your tests are passing and conflicts are resolved</dd> <dt>@depfu cancel merge</dt><dd>Cancels automatic merging of this PR</dd> <dt>@depfu close</dt><dd>Closes this PR and deletes the branch</dd> <dt>@depfu reopen</dt><dd>Restores the branch and reopens this PR (if it's closed)</dd> <dt>@depfu pause</dt><dd>Ignores all future updates for this dependency and closes this PR</dd> <dt>@depfu pause [minor|major]</dt><dd>Ignores all future minor/major updates for this dependency and closes this PR</dd> <dt>@depfu resume</dt><dd>Future versions of this dependency will create PRs again (leaves this PR as is)</dd> </dl></blockquote> </details> Co-authored-by: depfu[bot] <23717796+depfu[bot]@users.noreply.github.com>
71 lines
1.9 KiB
JSON
71 lines
1.9 KiB
JSON
{
|
|
"name": "@tailwindcss/root",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"prettier": {
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"printWidth": 100,
|
|
"plugins": [
|
|
"prettier-plugin-organize-imports"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"tsconfig.json"
|
|
],
|
|
"options": {
|
|
"parser": "jsonc"
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"integrations/**/*.ts"
|
|
],
|
|
"options": {
|
|
"plugins": [
|
|
"prettier-plugin-embed",
|
|
"prettier-plugin-organize-imports"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --write .",
|
|
"lint": "prettier --check . && turbo lint",
|
|
"build": "turbo build --filter=!./playgrounds/*",
|
|
"postbuild": "node ./scripts/pack-packages.mjs",
|
|
"dev": "turbo dev --filter=!./playgrounds/*",
|
|
"test": "cargo test && vitest run --hideSkippedTests",
|
|
"test:integrations": "vitest --root=./integrations",
|
|
"test:ui": "pnpm run --filter=tailwindcss test:ui && pnpm run --filter=@tailwindcss/browser test:ui",
|
|
"tdd": "vitest --hideSkippedTests",
|
|
"bench": "vitest bench",
|
|
"version-packages": "node ./scripts/version-packages.mjs",
|
|
"vite": "pnpm run --filter=vite-playground dev",
|
|
"nextjs": "pnpm run --filter=nextjs-playground dev"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.55.1",
|
|
"@types/node": "catalog:",
|
|
"postcss": "8.5.6",
|
|
"postcss-import": "^16.1.1",
|
|
"prettier": "catalog:",
|
|
"prettier-plugin-embed": "^0.5.0",
|
|
"prettier-plugin-organize-imports": "^4.3.0",
|
|
"tsup": "^8.5.0",
|
|
"turbo": "^2.5.4",
|
|
"typescript": "^5.5.4",
|
|
"vitest": "^2.0.5"
|
|
},
|
|
"packageManager": "pnpm@9.6.0",
|
|
"pnpm": {
|
|
"patchedDependencies": {
|
|
"lightningcss@1.30.1": "patches/lightningcss@1.30.1.patch",
|
|
"@parcel/watcher@2.5.1": "patches/@parcel__watcher@2.5.1.patch"
|
|
}
|
|
}
|
|
}
|