diff --git a/nx.json b/nx.json index 23e21a68..4e142d90 100644 --- a/nx.json +++ b/nx.json @@ -59,7 +59,9 @@ "options": { "targetName": "test" }, - "exclude": ["apps/services/user-e2e/**/*"] + "exclude": [ + "apps/services/user-e2e/**/*" + ] }, { "plugin": "@nx/rollup/plugin", @@ -71,7 +73,10 @@ } ], "namedInputs": { - "default": ["{projectRoot}/**/*", "sharedGlobals"], + "default": [ + "{projectRoot}/**/*", + "sharedGlobals" + ], "production": [ "default", "!{projectRoot}/**/*.spec.ts", @@ -113,52 +118,101 @@ }, "targetDefaults": { "build": { - "dependsOn": ["^build"], - "inputs": ["production", "^production"], + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production" + ], "cache": true }, "typecheck": { - "dependsOn": ["^build"], - "inputs": ["default", "^production"], + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^production" + ], "cache": true }, "lint": { - "inputs": ["default", "^production"], + "inputs": [ + "default", + "^production" + ], "cache": true }, "test": { - "dependsOn": ["^build"], - "inputs": ["default", "^production"], + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^production" + ], "cache": true }, "e2e": { - "dependsOn": ["^build"], - "inputs": ["default", "^production"], + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^production" + ], "cache": true }, "e2e-ci": { - "dependsOn": ["^build"], - "inputs": ["default", "^production"], + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^production" + ], "cache": true }, "preview": { - "dependsOn": ["build"], - "inputs": ["production", "^production", "cloudflare"], + "dependsOn": [ + "build" + ], + "inputs": [ + "production", + "^production", + "cloudflare" + ], "cache": false }, "deploy": { - "dependsOn": ["build"], - "inputs": ["production", "^production", "cloudflare"], + "dependsOn": [ + "build" + ], + "inputs": [ + "production", + "^production", + "cloudflare" + ], "cache": false }, "upload": { - "dependsOn": ["build"], - "inputs": ["production", "^production", "cloudflare"], + "dependsOn": [ + "build" + ], + "inputs": [ + "production", + "^production", + "cloudflare" + ], "cache": false }, "cf:typegen": { - "inputs": ["cloudflare"], + "inputs": [ + "cloudflare" + ], "cache": true } - } -} + }, + "nxCloudId": "6a1dd0bc74ae73b853c5d690" +} \ No newline at end of file