Skip to content

Commit

Permalink
deps: update
Browse files Browse the repository at this point in the history
  • Loading branch information
estevanbs committed Jun 6, 2024
1 parent b238fe7 commit 9da881f
Show file tree
Hide file tree
Showing 16 changed files with 20,364 additions and 47,224 deletions.
10 changes: 8 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,18 @@
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nx/typescript"],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript"],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
}
]
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ Thumbs.db
.env
.angular

.nx/cache
.nx/cache
.nx/workspace-data
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/dist
/coverage

/.nx/cache
/.nx/cache
/.nx/workspace-data
7 changes: 3 additions & 4 deletions apps/demos/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/demos/src",
"tags": ["type:app"],
"targets": {
"build": {
"executor": "@nx/webpack:webpack",
Expand Down Expand Up @@ -58,8 +59,7 @@
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
Expand All @@ -68,6 +68,5 @@
"jestConfig": "apps/demos/jest.config.ts"
}
}
},
"tags": ["type:app"]
}
}
7 changes: 3 additions & 4 deletions apps/todo/angular/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"projectType": "application",
"sourceRoot": "apps/todo/angular/src",
"prefix": "todo",
"tags": ["type:app"],
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:browser",
Expand Down Expand Up @@ -75,8 +76,7 @@
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
Expand All @@ -85,6 +85,5 @@
"jestConfig": "apps/todo/angular/jest.config.ts"
}
}
},
"tags": ["type:app"]
}
}
7 changes: 3 additions & 4 deletions apps/todo/react/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/todo/react/src",
"projectType": "application",
"tags": ["type:app"],
"targets": {
"build": {
"executor": "@nx/vite:build",
Expand Down Expand Up @@ -50,8 +51,7 @@
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
Expand All @@ -75,6 +75,5 @@
}
}
}
},
"tags": ["type:app"]
}
}
7 changes: 3 additions & 4 deletions apps/todo/web/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/todo/web/src",
"tags": ["type:app"],
"targets": {
"build": {
"executor": "@nx/webpack:webpack",
Expand Down Expand Up @@ -55,8 +56,7 @@
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
Expand All @@ -65,6 +65,5 @@
"jestConfig": "apps/todo/web/jest.config.ts"
}
}
},
"tags": ["type:app"]
}
}
7 changes: 3 additions & 4 deletions libs/cli/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/cli/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
Expand All @@ -16,8 +17,7 @@
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
Expand All @@ -26,6 +26,5 @@
"jestConfig": "libs/cli/jest.config.ts"
}
}
},
"tags": []
}
}
7 changes: 3 additions & 4 deletions libs/core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/core/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
Expand All @@ -16,8 +17,7 @@
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
Expand All @@ -32,6 +32,5 @@
"command": "npx semantic-release -e ./libs/core/.releaserc.json"
}
}
},
"tags": []
}
}
7 changes: 3 additions & 4 deletions libs/plugin/core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/plugin/core/src",
"projectType": "library",
"tags": ["type:plugin"],
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
Expand Down Expand Up @@ -50,6 +50,5 @@
"command": "npx semantic-release -e ./libs/plugin/core/.releaserc.json"
}
}
},
"tags": ["type:plugin"]
}
}
7 changes: 3 additions & 4 deletions libs/todo/data-access/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/todo/data-access/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
Expand All @@ -16,8 +17,7 @@
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
Expand All @@ -26,6 +26,5 @@
"jestConfig": "libs/todo/data-access/jest.config.ts"
}
}
},
"tags": []
}
}
7 changes: 3 additions & 4 deletions libs/todo/domain/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/todo/domain/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
Expand All @@ -16,8 +17,7 @@
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
Expand All @@ -26,6 +26,5 @@
"jestConfig": "libs/todo/domain/jest.config.ts"
}
}
},
"tags": []
}
}
7 changes: 3 additions & 4 deletions libs/todo/presentation/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/todo/presentation/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
Expand All @@ -16,8 +17,7 @@
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
Expand All @@ -26,6 +26,5 @@
"jestConfig": "libs/todo/presentation/jest.config.ts"
}
}
},
"tags": []
}
}
15 changes: 8 additions & 7 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"affected": {
"defaultBase": "main"
},
"workspaceLayout": {
"appsDir": "apps",
"libsDir": "libs"
Expand Down Expand Up @@ -53,9 +50,6 @@
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"lint": {
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
},
"@nx/jest:jest": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"cache": true,
Expand All @@ -68,6 +62,10 @@
"codeCoverage": true
}
}
},
"@nx/eslint:lint": {
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"],
"cache": true
}
},
"namedInputs": {
Expand All @@ -85,5 +83,8 @@
"!{projectRoot}/src/test-setup.[jt]s"
]
},
"parallel": 1
"parallel": 1,
"nxCloudAccessToken": "OWUzODEyMjgtYjY1NC00ZmQ3LTlhYWUtYzI5NTM3YmM2MTgxfHJlYWQtd3JpdGU=",
"useInferencePlugins": false,
"defaultBase": "main"
}
Loading

0 comments on commit 9da881f

Please sign in to comment.