Skip to content

Commit

Permalink
Revert "chore(nx): Upgrade to Nx 18"
Browse files Browse the repository at this point in the history
This reverts commit ea1cf22.
  • Loading branch information
manfredsteyer committed Mar 15, 2024
1 parent ea1cf22 commit bb87266
Show file tree
Hide file tree
Showing 18 changed files with 1,296 additions and 1,024 deletions.
5 changes: 4 additions & 1 deletion apps/mfe1-e2e/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/mfe1-e2e/**/*.{js,ts}"]
}
}
},
"tags": [],
Expand Down
5 changes: 4 additions & 1 deletion apps/mfe1/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@
}
},
"lint": {
"executor": "@nx/eslint:lint"
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": ["apps/mfe1/**/*.ts", "apps/mfe1/**/*.html"]
}
},
"test": {
"executor": "@nx/jest:jest",
Expand Down
5 changes: 4 additions & 1 deletion apps/mfe2-e2e/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/mfe2-e2e/**/*.{js,ts}"]
}
}
},
"tags": [],
Expand Down
5 changes: 4 additions & 1 deletion apps/mfe2/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@
}
},
"lint": {
"executor": "@nx/eslint:lint"
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": ["apps/mfe2/**/*.ts", "apps/mfe2/**/*.html"]
}
},
"test": {
"executor": "@nx/jest:jest",
Expand Down
3 changes: 3 additions & 0 deletions apps/playground-e2e/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": ["apps/playground-e2e/**/*.{js,ts}"]
},
"outputs": ["{options.outputFile}"]
}
},
Expand Down
6 changes: 6 additions & 0 deletions apps/playground/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": [
"apps/playground/src/**/*.ts",
"apps/playground/src/**/*.html"
]
},
"outputs": ["{options.outputFile}"]
},
"test": {
Expand Down
6 changes: 6 additions & 0 deletions libs/mf-runtime/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": [
"libs/mf-runtime/src/**/*.ts",
"libs/mf-runtime/src/**/*.html"
]
},
"outputs": ["{options.outputFile}"]
},
"test": {
Expand Down
6 changes: 6 additions & 0 deletions libs/mf-tools/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": [
"libs/mf-tools/src/**/*.ts",
"libs/mf-tools/src/**/*.html"
]
},
"outputs": ["{options.outputFile}"]
},
"test": {
Expand Down
3 changes: 3 additions & 0 deletions libs/mf/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": ["libs/mf/**/*.ts"]
},
"outputs": ["{options.outputFile}"]
},
"test": {
Expand Down
5 changes: 4 additions & 1 deletion libs/native-federation-core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/native-federation-core/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
Expand Down
5 changes: 4 additions & 1 deletion libs/native-federation-esbuild/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/native-federation-esbuild/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
Expand Down
8 changes: 7 additions & 1 deletion libs/native-federation-runtime/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@
}
},
"lint": {
"executor": "@nx/eslint:lint"
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": [
"libs/native-federation-runtime/**/*.ts",
"libs/native-federation-runtime/**/*.html"
]
}
}
},
"tags": []
Expand Down
10 changes: 9 additions & 1 deletion libs/native-federation/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,15 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"libs/native-federation/**/*.ts",
"libs/native-federation/generators.json",
"libs/native-federation/executors.json",
"libs/native-federation/package.json"
]
}
},
"test": {
"executor": "@nx/jest:jest",
Expand Down
8 changes: 7 additions & 1 deletion libs/playground-lib/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@
}
},
"lint": {
"executor": "@nx/eslint:lint"
"executor": "@nx/eslint:lint",
"options": {
"lintFilePatterns": [
"libs/playground-lib/**/*.ts",
"libs/playground-lib/**/*.html"
]
}
}
},
"tags": []
Expand Down
Loading

0 comments on commit bb87266

Please sign in to comment.