-
Notifications
You must be signed in to change notification settings - Fork 0
chore(js-client): bump npm dependencies #92
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
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
c92aa11
chore(js-client): migrate Nx 19.5.2 to 20.8.4
claude 6a622f1
chore(js-client): bump safe minor/patch devDependencies
claude b40ba06
chore(js-client): migrate ESLint to flat config and bump to Node 24
claude d292bef
chore(js-client): bump @leancodepl/utils to 10 (ESM) and fix jest tra…
claude fcb97b5
chore(js-client): bump lodash to 4.18.1
claude 6b337c4
chore(js-client): bump rxjs to 7.8.2
claude 64d2475
chore(js-client): bump tslib to ^2.8.1
claude 9160a31
chore(js-client): bump @types/node to 24.13.2 (Node 24-aligned)
claude 2625c8c
chore(js-client): bump @microsoft/signalr to 10.0.0
claude c02e6d2
chore(js-client): migrate Nx 20.8.4 -> 23.0.1 and unblock jest 30
claude 088d01b
chore(js-client): bump lerna to 9.0.7
claude efe4432
chore(js-client): bump jest to 30.4.2 (jest-environment-jsdom/jest-ut…
claude ad7afb4
chore(js-client): bump @swc/core to 1.15.43
claude b5fefae
chore: add TODO explaining the jest ESM transform workaround
claude f684232
chore: fix ignore-file newlines and document eslint json block
claude 907cd79
chore(js-client): migrate Nx 23.0.1 -> 23.1.0
claude cedd7a1
chore(js-client): bump safe minor devDependencies
claude f112195
chore(js-client): bump typescript 5.9.3 -> 6.0.3
claude e6add78
chore(js-client): revert TypeScript to 5.9.3 and bump .nvmrc to 24.18
claude File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,3 +39,5 @@ testem.log | |
| Thumbs.db | ||
|
|
||
| .nx | ||
|
|
||
| .claude/worktrees | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 20 | ||
| 24.18 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,3 +2,5 @@ | |
| /dist | ||
| /coverage | ||
| /.nx/cache | ||
|
|
||
| .nx/self-healing | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1 @@ | ||
| const config = require("@leancodepl/prettier-config") | ||
|
|
||
| module.exports = config | ||
| module.exports = require("@leancodepl/prettier-config") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| import nx from "@nx/eslint-plugin" | ||
| import { base, imports } from "@leancodepl/eslint-config" | ||
| import jsoncParser from "jsonc-eslint-parser" | ||
|
|
||
| const config = [ | ||
| ...nx.configs["flat/base"], | ||
| ...nx.configs["flat/typescript"], | ||
| ...nx.configs["flat/javascript"], | ||
| ...base, | ||
| ...imports, | ||
| { | ||
| ignores: ["**/dist", "**/*.timestamp*"], | ||
| }, | ||
| { | ||
| files: ["*.ts", "*.tsx", "*.js", "*.jsx", "*.mjs", "*.cjs", "*.mts", "*.cts"], | ||
| rules: { | ||
| "@nx/enforce-module-boundaries": [ | ||
| "error", | ||
| { | ||
| enforceBuildableLibDependency: true, | ||
| allow: ["./eslint.config.mjs"], | ||
| depConstraints: [ | ||
| { | ||
| sourceTag: "*", | ||
| onlyDependOnLibsWithTags: ["*"], | ||
| }, | ||
| ], | ||
| }, | ||
| ], | ||
| }, | ||
| }, | ||
| { | ||
| // This block is what makes `@nx/dependency-checks` run on package.json (it is | ||
| // listed in pipe's lintFilePatterns). Without a `**/*.json` block, ESLint flat | ||
| // config matches no configuration for package.json and silently skips it | ||
| // ("File ignored because no matching configuration was supplied"), so | ||
| // dependency-checks would stop enforcing declared vs. used deps. | ||
| files: ["**/*.json"], | ||
| languageOptions: { | ||
| parser: jsoncParser, | ||
| }, | ||
| rules: { | ||
| // The shared @leancodepl base config enables type-aware TS rules globally | ||
| // (no `files` scope), so they also try to run on JSON files under the JSON | ||
| // parser and crash. Turn the offending one off here; dependency-checks is | ||
| // the only rule we actually want to lint JSON with. | ||
| "@typescript-eslint/naming-convention": "off", | ||
| "@nx/dependency-checks": "error", | ||
| }, | ||
| }, | ||
| ] | ||
|
|
||
| export default config | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| import { getJestProjects } from "@nx/jest" | ||
| const { getJestProjects } = require("@nx/jest") | ||
|
|
||
| export default { | ||
| projects: getJestProjects(), | ||
| module.exports = { | ||
| projects: getJestProjects(), | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.