8000 chore: nx migrate latest (14.8.4) (#5798) · adnanhashmi09/typescript-eslint@56f89d6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 56f89d6

Browse files
authored
chore: nx migrate latest (14.8.4) (typescript-eslint#5798)
1 parent a086932 commit 56f89d6

File tree

19 files changed

+152
-157
lines changed

19 files changed

+152
-157
lines changed

nx.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"$schema": "./node_modules/nx/schemas/nx-schema.json",
23
"npmScope": "typescript-eslint",
34
"implicitDependencies": {
45
"package.json": {
@@ -26,12 +27,9 @@
2627
}
2728
}
2829
},
29-
"targetDependencies": {
30-
"build": [
31-
{
32-
"target": "build",
33-
"projects": "dependencies"
34-
}
35-
]
30+
"targetDefaults": {
31+
"build": {
32+
"dependsOn": ["^build"]
33+
}
3634
}
3735
}

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,8 @@
5353
"@babel/eslint-parser": "^7.18.2",
5454
"@babel/parser": "^7.18.0",
5555
"@babel/types": "^7.18.2",
56-
"@nrwl/cli": "14.1.4",
57-
"@nrwl/nx-cloud": "14.0.3",
58-
"@nrwl/tao": "14.1.4",
59-
"@nrwl/workspace": "14.1.4",
56+
"@nrwl/nx-cloud": "14.7.0",
57+
"@nrwl/workspace": "14.8.4",
6058
"@swc/core": "^1.3.1",
6159
"@swc/jest": "^0.2.21",
6260
"@types/babel__code-frame": "^7.0.3",
@@ -98,6 +96,7 @@
9896
"make-dir": "^3.1.0",
9997
"markdownlint-cli": "^0.32.0",
10098
"ncp": "^2.0.0",
99+
"nx": "14.8.4",
101100
"patch-package": "^6.4.7",
102101
"prettier": "2.7.1",
103102
"pretty-format": "^29.0.3",

packages/ast-spec/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/ast-spec",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": []
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/eslint-plugin-internal",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": []
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/eslint-plugin-tslint",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": []
55
}

packages/eslint-plugin/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/eslint-plugin",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
< F438 /td>
44
"implicitDependencies": []
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/experimental-utils",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": []
55
}

packages/parser/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/parser",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": []
55
}

packages/scope-manager/project.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"root": "packages/scope-manager",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"sourceRoot": "packages/scope-manager/src",
44
"projectType": "library",
55
"targets": {
66
"build": {
7-
"executor": "@nrwl/workspace:run-commands",
7+
"executor": "nx:run-commands",
88
"outputs": [
99
"packages/scope-manager/dist",
1010
"packages/scope-manager/_ts3.4"
@@ -20,7 +20,7 @@
2020
}
2121
},
2222
"typecheck": {
23-
"executor": "@nrwl/workspace:run-commands",
23+
"executor": "nx:run-commands",
2424
"options": {
2525
"parallel": true,
2626
"cwd": "packages/scope-manager",
@@ -31,7 +31,7 @@
3131
}
3232
},
3333
"clean": {
34-
"executor": "@nrwl/workspace:run-commands",
34+
"executor": "nx:run-commands",
3535
"options": {
3636
"parallel": false,
3737
"cwd": "packages/scope-manager",
@@ -44,7 +44,7 @@
4444
}
4545
},
4646
"clean-fixtures": {
47-
"executor": "@nrwl/workspace:run-commands",
47+
"executor": "nx:run-commands",
4848
"options": {
4949
"parallel": false,
5050
"cwd": "packages/scope-manager",
@@ -68,7 +68,7 @@
6868
}
6969
},
7070
"generate-lib": {
71-
"executor": "@nrwl/workspace:run-commands",
71+
"executor": "nx:run-commands",
7272
"options": {
7373
"parallel": false,
7474
"cwd": "packages/scope-manager",

packages/shared-fixtures/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/shared-fixtures",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": []
55
}

packages/type-utils/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/type-utils",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": []
55
}

packages/types/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/types",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": ["@typescript-eslint/ast-spec"]
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/typescript-estree",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": ["@typescript-eslint/types"]
55
}

packages/utils/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/utils",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": []
55
}

packages/visitor-keys/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/visitor-keys",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": []
55
}

packages/website-eslint/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/website-eslint",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": []
55
}

packages/website/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"root": "packages/website",
2+
"$schema": "../../node_modules/nx/schemas/project-schema.json",
33
"type": "library",
44
"implicitDependencies": []
55
}

workspace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"$schema": "./node_modules/nx/schemas/workspace-schema.json",
23
"version": 2,
34
"projects": {
45
"@typescript-eslint/ast-spec": "packages/ast-spec",

0 commit comments

Comments
 (0)
0