diff --git a/nx.json b/nx.json index 750c407..c22b7a3 100644 --- a/nx.json +++ b/nx.json @@ -3,19 +3,13 @@ "default": { "runner": "nx/tasks-runners/default", "options": { - "cacheableOperations": [ - "lint", - "test", - "build" - ] + "cacheableOperations1": ["lint", "test", "build"] } } }, "targetDefaults": { "build": { - "dependsOn": [ - "^build" - ], + "dependsOn": ["^build"], "outputs": [ "{projectRoot}/dist", "{projectRoot}/es", @@ -26,13 +20,8 @@ }, "$schema": "./node_modules/nx/schemas/nx-schema.json", "namedInputs": { - "default": [ - "{projectRoot}/**/*", - "sharedGlobals" - ], + "default": ["{projectRoot}/**/*", "sharedGlobals"], "sharedGlobals": [], - "production": [ - "default" - ] + "production": ["default"] } }