Skip to content

Commit

Permalink
build(deps): upgrade nx from 17.3.2 to 19.4.2 (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmstss authored Jul 11, 2024
1 parent c31dd63 commit 9cc7314
Show file tree
Hide file tree
Showing 11 changed files with 795 additions and 1,439 deletions.
15 changes: 9 additions & 6 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
"ignoreIIFE": true
}
],
"@typescript-eslint/return-await": ["error", "in-try-catch"],
"@typescript-eslint/return-await": "error",
"@typescript-eslint/require-await": "error",
"require-await": "off",
"no-return-await": "off",
Expand Down Expand Up @@ -249,13 +249,18 @@
"prefer-spread": "error",
"no-new-func": "error",
"no-new-wrappers": "error",
"radix": "error"
"radix": "error",
"@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"
}
},
{
"env": {
Expand Down Expand Up @@ -285,9 +290,7 @@
"files": ["*.json"],
"parser": "jsonc-eslint-parser",
"rules": {
"@nx/dependency-checks": ["error", {
"ignoredDependencies": ["nock", "ts-mockito"]
}]
"@nx/dependency-checks": "error"
}
}
]
Expand Down
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@
*-lock.json
*.lock

/.nx/cache
/.nx/cache
/.nx/workspace-data
43 changes: 24 additions & 19 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
{
"affected": {
"defaultBase": "master"
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"production": [
"default",
"!{projectRoot}/.eslintrc.json",
"!{projectRoot}/.eslintrc.js",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/jest.config.[jt]s"
],
"sharedGlobals": []
},
"workspaceLayout": {
"appsDir": "examples",
Expand All @@ -15,31 +25,24 @@
"setParserOptionsProject": true
}
},
"implicitDependencies": {
"workspace.json": "*",
"package.json": {
"dependencies": "*",
"devDependencies": "*"
},
"tsconfig.base.json": "*",
"nx.json": "*"
},
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
"publish": {
"dependsOn": ["build"]
},
"build": {
"cache": true,
"dependsOn": ["^build"],
"cache": true
"inputs": [
"production",
"^production",
"{workspaceRoot}/package.json",
"{workspaceRoot}/tsconfig.base.json",
"{workspaceRoot}/nx.json"
]
},
"@nx/eslint:lint": {
"cache": true,
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json",
"{workspaceRoot}/tools/eslint-rules/**/*"
]
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
},
"@nx/jest:jest": {
"cache": true,
Expand All @@ -55,5 +58,7 @@
}
}
},
"parallel": 1
"parallel": 1,
"useInferencePlugins": false,
"defaultBase": "master"
}
Loading

0 comments on commit 9cc7314

Please sign in to comment.