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",

0 commit comments

Comments
 (0)