From 4d0da1477cd10d2d9a0c26ada4fde25842074222 Mon Sep 17 00:00:00 2001 From: Urban Date: Tue, 25 Jun 2024 17:31:17 +0200 Subject: [PATCH 1/2] feat(nx-cloud): setup nx cloud workspace This commit set up Nx Cloud for your Nx workspace enabling distributed caching and GitHub integration for fast CI and improved Developer Experience. You can access your Nx Cloud workspace by going to https://cloud.nx.app/orgs/664a2719c1183abe558bd534/workspaces/667ae2c36abf094005041b8f **Note:** This commit attempts to maintain formatting of the nx.json, however you may need to correct formatting by running an nx format command and committing the changes. --- nx.json | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/nx.json b/nx.json index afe331e..bda254f 100644 --- a/nx.json +++ b/nx.json @@ -2,7 +2,9 @@ "extends": "nx/presets/npm.json", "$schema": "./node_modules/nx/schemas/nx-schema.json", "namedInputs": { - "default": ["{projectRoot}/**/*"], + "default": [ + "{projectRoot}/**/*" + ], "production": [ "default", "!{projectRoot}/**/*.spec.ts", @@ -21,8 +23,13 @@ "targetDefaults": { "build": { "cache": true, - "dependsOn": ["^build"], - "inputs": ["production", "^production"], + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production" + ], "outputs": [ "{projectRoot}/dist", "{projectRoot}/.next", @@ -44,7 +51,9 @@ }, "coverage": { "cache": true, - "outputs": ["{projectRoot}/packages/contracts/coverage"] + "outputs": [ + "{projectRoot}/packages/contracts/coverage" + ] }, "test": { "cache": true @@ -56,6 +65,6 @@ "cache": true } }, - "nxCloudAccessToken": "", + "nxCloudAccessToken": "MmIxYWI0MjctZGJlYi00YjgwLThmYzktY2JiOWI3OTc0OTIxfHJlYWQtd3JpdGU=", "defaultBase": "develop" -} +} \ No newline at end of file From 2f6bdb403f7b0e66b3fdc43e92470e3c49f87615 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Urban=20Vidovic=CC=8C?= Date: Tue, 25 Jun 2024 17:34:03 +0200 Subject: [PATCH 2/2] chore: new access token MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Urban Vidovič --- nx.json | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/nx.json b/nx.json index bda254f..e77c89d 100644 --- a/nx.json +++ b/nx.json @@ -2,9 +2,7 @@ "extends": "nx/presets/npm.json", "$schema": "./node_modules/nx/schemas/nx-schema.json", "namedInputs": { - "default": [ - "{projectRoot}/**/*" - ], + "default": ["{projectRoot}/**/*"], "production": [ "default", "!{projectRoot}/**/*.spec.ts", @@ -23,13 +21,8 @@ "targetDefaults": { "build": { "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ], + "dependsOn": ["^build"], + "inputs": ["production", "^production"], "outputs": [ "{projectRoot}/dist", "{projectRoot}/.next", @@ -51,9 +44,7 @@ }, "coverage": { "cache": true, - "outputs": [ - "{projectRoot}/packages/contracts/coverage" - ] + "outputs": ["{projectRoot}/packages/contracts/coverage"] }, "test": { "cache": true @@ -65,6 +56,6 @@ "cache": true } }, - "nxCloudAccessToken": "MmIxYWI0MjctZGJlYi00YjgwLThmYzktY2JiOWI3OTc0OTIxfHJlYWQtd3JpdGU=", + "nxCloudAccessToken": "MzgxYTJiOTEtNzE0ZC00MTAyLWEzYzItZmVjYTYxY2NhMDNifHJlYWQ=", "defaultBase": "develop" -} \ No newline at end of file +}