-
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
Open
claude
wants to merge
15
commits into
main
Choose a base branch
from
chore/js-client-npm-dependencies-bump
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 13 commits
Commits
Show all changes
15 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 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.13 |
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
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,47 @@ | ||
| 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: ["*"], | ||
| }, | ||
| ], | ||
| }, | ||
| ], | ||
| }, | ||
| }, | ||
| { | ||
| files: ["**/*.json"], | ||
| languageOptions: { | ||
| parser: jsoncParser, | ||
| }, | ||
| rules: { | ||
| // The shared @leancodepl base config enables type-aware TS rules globally | ||
| // (no `files` scope); they cannot run under the JSON parser, so turn them | ||
| // off for JSON files. dependency-checks is the only rule we lint JSON with. | ||
| "@typescript-eslint/naming-convention": "off", | ||
| "@nx/dependency-checks": "error", | ||
|
Komoszek marked this conversation as resolved.
|
||
| }, | ||
| }, | ||
| ] | ||
|
|
||
| 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.