Skip to content
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

build(deps): upgrade nx from 14.5.6 to 17.3.2 #208

Merged
merged 30 commits into from
Jul 11, 2024
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
67112ac
chore: [nx migration] 16.0.0-remove-nrwl-cli
pmstss Jul 10, 2024
1c5c164
chore: [nx migration] 16.0.0-update-nx-cloud-runner
pmstss Jul 10, 2024
b09054e
chore: [nx migration] 16.6.0-prefix-outputs
pmstss Jul 10, 2024
b4d5861
chore: [nx migration] 17.0.0-move-cache-directory
pmstss Jul 10, 2024
bf6fe3f
chore: [nx migration] 17.0.0-use-minimal-config-for-tasks-runner-options
pmstss Jul 10, 2024
201ee14
chore: [nx migration] rm-default-collection-npm-scope
pmstss Jul 10, 2024
12985e6
chore: [nx migration] update-16-0-0-add-nx-packages
pmstss Jul 10, 2024
53189b2
chore: [nx migration] update-16-0-0-add-nx-packages
pmstss Jul 10, 2024
a7d1768
chore: [nx migration] 16-0-0-move-workspace-generators-into-local-plugin
pmstss Jul 10, 2024
0c3801c
chore: [nx migration] 16-0-0-fix-invalid-babelrc
pmstss Jul 10, 2024
a4b251d
chore: [nx migration] update-16-0-0-add-nx-packages
pmstss Jul 10, 2024
b13d294
chore: [nx migration] explicitly-set-projects-to-update-buildable-deps
pmstss Jul 10, 2024
3a5e133
chore: [nx migration] update-17-0-0-remove-deprecated-build-options
pmstss Jul 10, 2024
8dfe701
chore: [nx migration] update-16-0-0-add-nx-packages
pmstss Jul 10, 2024
234e476
chore: [nx migration] update-17-0-0-rename-to-eslint
pmstss Jul 10, 2024
dcbfd1b
chore: [nx migration] simplify-eslint-patterns
pmstss Jul 10, 2024
aadf747
chore: [nx migration] move-options-to-target-defaults
pmstss Jul 10, 2024
db64737
chore: [nx migration] update-16-0-0-add-nx-packages
pmstss Jul 10, 2024
8474b5e
chore: [nx migration] update-16-0-0-add-nx-packages
pmstss Jul 10, 2024
48aac41
chore: [nx migration] move-options-to-target-defaults
pmstss Jul 10, 2024
4ea3850
chore: [nx migration] update-16-0-0-add-nx-packages
pmstss Jul 10, 2024
974fbaf
chore: remove deprecated `suppressImplicitAnyIndexErrors`
pmstss Jul 11, 2024
9d33fa4
fix: typing issues after typescript update
pmstss Jul 11, 2024
edd77a8
chore(eslint): remove invalid `private-abstract-method` and deprecate…
pmstss Jul 11, 2024
4528a9f
chore: add nx aux folders to gitignore
pmstss Jul 11, 2024
4052ae9
fix: violations due to updated eslint and plugins
pmstss Jul 11, 2024
1ddd7b8
chore: cleanup unused/legacy nx parts
pmstss Jul 11, 2024
532ff16
chore(test): updated typescript stricter typing fix
pmstss Jul 11, 2024
c1acf01
build(deps): minor and patch bumps
pmstss Jul 11, 2024
9acf4e8
chore: `@nx/dependency-checks` rule config
pmstss Jul 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: [nx migration] 16.0.0-update-nx-cloud-runner
pmstss committed Jul 10, 2024
commit 1c5c1647db89983a133af22e6d5c61ce90a3427d
Binary file modified .nx/cache/nx_files.nxt
Binary file not shown.
15 changes: 12 additions & 3 deletions nx.json
Original file line number Diff line number Diff line change
@@ -29,18 +29,27 @@
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "lint", "test", "e2e"],
"cacheableOperations": [
"build",
"lint",
"test",
"e2e"
],
"parallel": 1
}
}
},
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
"publish": {
"dependsOn": ["build"]
"dependsOn": [
"build"
]
},
"build": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
}
}
}