Skip to content

Commit bb87266

Browse files
committed
Revert "chore(nx): Upgrade to Nx 18"
This reverts commit ea1cf22.
1 parent ea1cf22 commit bb87266

File tree

18 files changed

+1296
-1024
lines changed

18 files changed

+1296
-1024
lines changed

apps/mfe1-e2e/project.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
},
2020
"lint": {
2121
"executor": "@nx/eslint:lint",
22-
"outputs": ["{options.outputFile}"]
22+
"outputs": ["{options.outputFile}"],
23+
"options": {
24+
"lintFilePatterns": ["apps/mfe1-e2e/**/*.{js,ts}"]
25+
}
2326
}
2427
},
2528
"tags": [],

apps/mfe1/project.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@
7070
}
7171
},
7272
"lint": {
73-
"executor": "@nx/eslint:lint"
73+
"executor": "@nx/eslint:lint",
74+
"options": {
75+
"lintFilePatterns": ["apps/mfe1/**/*.ts", "apps/mfe1/**/*.html"]
76+
}
7477
},
7578
"test": {
7679
"executor": "@nx/jest:jest",

apps/mfe2-e2e/project.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
},
2020
"lint": {
2121
"executor": "@nx/eslint:lint",
22-
"outputs": ["{options.outputFile}"]
22+
"outputs": ["{options.outputFile}"],
23+
"options": {
24+
"lintFilePatterns": ["apps/mfe2-e2e/**/*.{js,ts}"]
25+
}
2326
}
2427
},
2528
"tags": [],

apps/mfe2/project.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@
7171
}
7272
},
7373
"lint": {
74-
"executor": "@nx/eslint:lint"
74+
"executor": "@nx/eslint:lint",
75+
"options": {
76+
"lintFilePatterns": ["apps/mfe2/**/*.ts", "apps/mfe2/**/*.html"]
77+
}
7578
},
7679
"test": {
7780
"executor": "@nx/jest:jest",

apps/playground-e2e/project.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
},
2020
"lint": {
2121
"executor": "@nx/eslint:lint",
22+
"options": {
23+
"lintFilePatterns": ["apps/playground-e2e/**/*.{js,ts}"]
24+
},
2225
"outputs": ["{options.outputFile}"]
2326
}
2427
},

apps/playground/project.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@
7878
},
7979
"lint": {
8080
"executor": "@nx/eslint:lint",
81+
"options": {
82+
"lintFilePatterns": [
83+
"apps/playground/src/**/*.ts",
84+
"apps/playground/src/**/*.html"
85+
]
86+
},
8187
"outputs": ["{options.outputFile}"]
8288
},
8389
"test": {

libs/mf-runtime/project.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
},
2020
"lint": {
2121
"executor": "@nx/eslint:lint",
22+
"options": {
23+
"lintFilePatterns": [
24+
"libs/mf-runtime/src/**/*.ts",
25+
"libs/mf-runtime/src/**/*.html"
26+
]
27+
},
2228
"outputs": ["{options.outputFile}"]
2329
},
2430
"test": {

libs/mf-tools/project.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
},
2020
"lint": {
2121
"executor": "@nx/eslint:lint",
22+
"options": {
23+
"lintFilePatterns": [
24+
"libs/mf-tools/src/**/*.ts",
25+
"libs/mf-tools/src/**/*.html"
26+
]
27+
},
2228
"outputs": ["{options.outputFile}"]
2329
},
2430
"test": {

libs/mf/project.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
"targets": {
77
"lint": {
88
"executor": "@nx/eslint:lint",
9+
"options": {
10+
"lintFilePatterns": ["libs/mf/**/*.ts"]
11+
},
912
"outputs": ["{options.outputFile}"]
1013
},
1114
"test": {

libs/native-federation-core/project.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@
3030
},
3131
"lint": {
3232
"executor": "@nx/eslint:lint",
33-
"outputs": ["{options.outputFile}"]
33+
"outputs": ["{options.outputFile}"],
34+
"options": {
35+
"lintFilePatterns": ["libs/native-federation-core/**/*.ts"]
36+
}
3437
},
3538
"test": {
3639
"executor": "@nx/jest:jest",

libs/native-federation-esbuild/project.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@
3030
},
3131
"lint": {
3232
"executor": "@nx/eslint:lint",
33-
"outputs": ["{options.outputFile}"]
33+
"outputs": ["{options.outputFile}"],
34+
"options": {
35+
"lintFilePatterns": ["libs/native-federation-esbuild/**/*.ts"]
36+
}
3437
},
3538
"test": {
3639
"executor": "@nx/jest:jest",

libs/native-federation-runtime/project.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,13 @@
2929
}
3030
},
3131
"lint": {
32-
"executor": "@nx/eslint:lint"
32+
"executor": "@nx/eslint:lint",
33+
"options": {
34+
"lintFilePatterns": [
35+
"libs/native-federation-runtime/**/*.ts",
36+
"libs/native-federation-runtime/**/*.html"
37+
]
38+
}
3339
}
3440
},
3541
"tags": []

libs/native-federation/project.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,15 @@
4949
},
5050
"lint": {
5151
"executor": "@nx/eslint:lint",
52-
"outputs": ["{options.outputFile}"]
52+
"outputs": ["{options.outputFile}"],
53+
"options": {
54+
"lintFilePatterns": [
55+
"libs/native-federation/**/*.ts",
56+
"libs/native-federation/generators.json",
57+
"libs/native-federation/executors.json",
58+
"libs/native-federation/package.json"
59+
]
60+
}
5361
},
5462
"test": {
5563
"executor": "@nx/jest:jest",

libs/playground-lib/project.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@
1313
}
1414
},
1515
"lint": {
16-
"executor": "@nx/eslint:lint"
16+
"executor": "@nx/eslint:lint",
17+
"options": {
18+
"lintFilePatterns": [
19+
"libs/playground-lib/**/*.ts",
20+
"libs/playground-lib/**/*.html"
21+
]
22+
}
1723
}
1824
},
1925
"tags": []

0 commit comments

Comments
 (0)