📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-03 16:04:10 +00:00
parent 2bf579321a
commit b40381458b
482 changed files with 8324 additions and 2007 deletions
@@ -213,7 +213,7 @@ class TailwindConfigGenerator:
return f"""import type {{ Config }} from 'tailwindcss'
const config: Config = {{
{self._indent_json(config_json, 1)}
{self._indent_json(config_json, 1)},
plugins: [{plugins_str}],
}}
@@ -230,7 +230,7 @@ export default config
return f"""/** @type {{import('tailwindcss').Config}} */
module.exports = {{
{self._indent_json(config_json, 1)}
{self._indent_json(config_json, 1)},
plugins: [{plugins_str}],
}}
"""