Bumps [prettier](https://github.com/prettier/prettier) from 3.8.1 to 3.8.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.8.2</h2> <ul> <li>Support Angular v21.2</li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#382">Changelog</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.8.2</h1> <p><a href="https://github.com/prettier/prettier/compare/3.8.1...3.8.2">diff</a></p> <h4>Angular: Support Angular v21.2 (<a href="https://redirect.github.com/prettier/prettier/pull/18722">#18722</a>, <a href="https://redirect.github.com/prettier/prettier/pull/19034">#19034</a> by <a href="https://github.com/fisker"><code>@fisker</code></a>)</h4> <p>Exhaustive typechecking with <code>@default never;</code></p> <!-- raw HTML omitted --> <pre lang="html"><code><!-- Input --> @switch (foo) { @case (1) {} @default never; } <p><!-- Prettier 3.8.1 --> SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "&<a href="https://redirect.github.com/prettier/prettier/issues/64">#64</a>;" HTML entity instead. (3:3)</p> <p><!-- Prettier 3.8.2 --> <a href="https://github.com/switch"><code>@switch</code></a> (foo) { <a href="https://github.com/case"><code>@case</code></a> (1) {} <a href="https://github.com/default"><code>@default</code></a> never; } </code></pre></p> <p><code>arrow function</code> and <code>instanceof</code> expressions.</p> <!-- raw HTML omitted --> <pre lang="html"><code><!-- Input --> @let fn = (a) => a? 1:2; <p>{{ fn ( a instanceof b)}}</p> <p><!-- Prettier 3.8.1 --> <a href="https://github.com/let"><code>@let</code></a> fn = (a) => a? 1:2;</p> <p>{{ fn ( a instanceof b)}}</p> <p><!-- Prettier 3.8.2 --> <a href="https://github.com/let"><code>@let</code></a> fn = (a) => (a ? 1 : 2);</p> <p>{{ fn(a instanceof b) }} </code></pre></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/b31557cf331a02acf83e7e29d1001b070189a0d9"><code>b31557c</code></a> Release 3.8.2</li> <li><a href="https://github.com/prettier/prettier/commit/96bbaeda0525bf758e464aed2f939d739a85c315"><code>96bbaed</code></a> Support Angular v21.2 (<a href="https://redirect.github.com/prettier/prettier/issues/18722">#18722</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/881360b92b3cfa39ffa0c0ee03bb4319079849a6"><code>881360b</code></a> Support <code>default never</code> in Angular v21.2 (<a href="https://redirect.github.com/prettier/prettier/issues/19034">#19034</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/07d67240f7a0f2d65014e00395b342bbec5db31b"><code>07d6724</code></a> Bump Prettier dependency to 3.8.1</li> <li><a href="https://github.com/prettier/prettier/commit/8b4a53ab3daddfe9c10c52fd5785a6a718770c34"><code>8b4a53a</code></a> Clean changelog_unreleased</li> <li>See full diff in <a href="https://github.com/prettier/prettier/compare/3.8.1...3.8.2">compare view</a></li> </ul> </details> <br /> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
47 lines
1.5 KiB
JSON
47 lines
1.5 KiB
JSON
{
|
|
"name": "@stats-organization/root",
|
|
"private": true,
|
|
"type": "module",
|
|
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
|
|
"devDependencies": {
|
|
"@eslint/compat": "2.0.5",
|
|
"@eslint/js": "10.0.1",
|
|
"@playwright/test": "1.59.1",
|
|
"@types/node": "24.12.0",
|
|
"@vitest/coverage-v8": "catalog:default",
|
|
"eslint": "10.1.0",
|
|
"eslint-import-resolver-typescript": "4.4.4",
|
|
"eslint-plugin-import-x": "4.16.2",
|
|
"eslint-plugin-jsdoc": "62.9.0",
|
|
"eslint-plugin-react": "7.37.5",
|
|
"eslint-plugin-react-hooks": "7.0.1",
|
|
"globals": "17.5.0",
|
|
"husky": "9.1.7",
|
|
"knip": "6.4.1",
|
|
"lint-staged": "16.4.0",
|
|
"prettier": "3.8.2",
|
|
"turbo": "2.9.6",
|
|
"typescript": "5.9.3",
|
|
"typescript-eslint": "8.58.0",
|
|
"vitest": "catalog:default"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"build:packages": "turbo run build --filter=./packages/*",
|
|
"build:frontend": "turbo run build --filter=./apps/frontend",
|
|
"dev:frontend": "pnpm run --filter=./apps/frontend dev",
|
|
"test": "vitest",
|
|
"test:coverage": "vitest --config vitest.config.coverage.ts",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"lint": "turbo run lint",
|
|
"lint:eslint": "eslint",
|
|
"lint:eslint:fix": "eslint --fix",
|
|
"lint:knip": "knip",
|
|
"typecheck": "turbo run typecheck"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,css,json,jsonc,yaml,yml}": "prettier --write"
|
|
}
|
|
}
|