Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 26 additions & 90 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"tasksRunnerOptions": {
"default": {
"runner": "nx-cloud",
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"build",
Expand All @@ -14,8 +14,7 @@
"generateDevIndexHTML"
],
"cacheDirectory": ".cache/nx",
"parallel": 1,
"nxCloudId": "681a220b646ee9953edfaaa1"
"parallel": 1
}
},
"ci": {
Expand All @@ -31,38 +30,19 @@
"codegen/frontend-client",
"generateDevIndexHTML"
],
"nxCloudId": "681a220b646ee9953edfaaa1"
"nxCloudId": "64e4eb6a54304f090734e8df"
}
},
"docker-test": {
"runner": "@nx/workspace/tasks-runners/default",
"options": {
"cacheableOperations": [],
"cacheDirectory": ".cache/nx"
}
"options": { "cacheableOperations": [], "cacheDirectory": ".cache/nx" }
}
},
"generators": {
"@nrwl/nx-plugin": {
"plugin": {
"linter": "eslint"
}
},
"@nx/workspace": {
"library": {
"linter": "eslint"
}
},
"@nx/cypress": {
"cypress-project": {
"linter": "eslint"
}
},
"@nx/web": {
"application": {
"linter": "eslint"
}
},
"@nrwl/nx-plugin": { "plugin": { "linter": "eslint" } },
"@nx/workspace": { "library": { "linter": "eslint" } },
"@nx/cypress": { "cypress-project": { "linter": "eslint" } },
"@nx/web": { "application": { "linter": "eslint" } },
"@nx/react": {
"application": {
"style": "scss",
Expand All @@ -71,56 +51,32 @@
"pascalCaseFiles": true,
"babel": true
},
"component": {
"style": "scss"
},
"component": { "style": "scss" },
"library": {
"style": "scss",
"linter": "eslint",
"unitTestRunner": "jest"
}
},
"@nx/node": {
"application": {
"linter": "eslint"
},
"library": {
"linter": "eslint"
}
"application": { "linter": "eslint" },
"library": { "linter": "eslint" }
},
"@nx/express": {
"application": {
"linter": "eslint"
},
"library": {
"linter": "eslint"
}
},
"@nx/nest": {
"application": {
"linter": "eslint"
}
"application": { "linter": "eslint" },
"library": { "linter": "eslint" }
},
"@nx/next": {
"application": {
"style": "scss",
"linter": "eslint"
}
}
"@nx/nest": { "application": { "linter": "eslint" } },
"@nx/next": { "application": { "style": "scss", "linter": "eslint" } }
},
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production", "DevOps"]
},
"e2e": {
"inputs": ["default", "^production"],
"cache": true
},
"lint": {
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
},
"e2e": { "inputs": ["default", "^production"], "cache": true },
"lint": { "inputs": ["default", "{workspaceRoot}/.eslintrc.json"] },
"test": {
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
},
Expand Down Expand Up @@ -148,15 +104,8 @@
"@nx/jest:jest": {
"cache": true,
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
"options": {
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
"options": { "passWithNoTests": true },
"configurations": { "ci": { "ci": true, "codeCoverage": true } }
},
"@nx/eslint:lint": {
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"],
Expand All @@ -175,16 +124,8 @@
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"forceRebuild": [
{
"runtime": "node .github/actions/force-build.mjs"
}
],
"nodeVersion": [
{
"runtime": "node --version"
}
],
"forceRebuild": [{ "runtime": "node .github/actions/force-build.mjs" }],
"nodeVersion": [{ "runtime": "node --version" }],
"DevOps": ["CI", "Dockerfiles", "{workspaceRoot}/scripts/**/*"],
"CI": [
"{workspaceRoot}/.github/actions/",
Expand Down Expand Up @@ -215,22 +156,17 @@
"!{projectRoot}/src/test-setup.[jt]s"
],
"graphql-files": [
{
"runtime": "node scripts/hash-files apps/api/src/api.graphql"
},
{ "runtime": "node scripts/hash-files apps/api/src/api.graphql" },
"{projectRoot}/codegen.yml",
"{projectRoot}/**/*.graphql"
],
"schema-files": [
"{projectRoot}/**/clientConfig.@(yml|yaml|json)",
{
"dependentTasksOutputFiles": "**/openapi.@(yml|yaml|json)"
},
{
"dependentTasksOutputFiles": "**/api.graphql"
}
{ "dependentTasksOutputFiles": "**/openapi.@(yml|yaml|json)" },
{ "dependentTasksOutputFiles": "**/api.graphql" }
]
},
"useInferencePlugins": false,
"defaultBase": "main"
"defaultBase": "main",
"nxCloudAccessToken": "ZDBhZmQyMmMtYzJjMS00NjVlLWJhYzktZTEzMWE1ZDdkYTdlfHJlYWQtd3JpdGU="
}
Loading