From 553de1a48250faa6448ac871376c0037cc437cdf Mon Sep 17 00:00:00 2001 From: Alex Freska Date: Wed, 13 Sep 2023 12:49:42 -0400 Subject: [PATCH] ci: export parallelism --- .github/workflows/pr.yml | 3 ++- libs/design-system/src/lib/entityTypes.ts | 9 --------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 5c2ba6114..d6758ec5c 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -45,4 +45,5 @@ jobs: ASSETS: ${{ github.workspace }}/assets - name: Export shell: bash - run: npx nx affected --target=export --configuration=ci --parallel=5 + # issue with parallelism + run: npx nx affected --target=export --configuration=ci --parallel=1 diff --git a/libs/design-system/src/lib/entityTypes.ts b/libs/design-system/src/lib/entityTypes.ts index 4b1ceead7..e20dc0c1f 100644 --- a/libs/design-system/src/lib/entityTypes.ts +++ b/libs/design-system/src/lib/entityTypes.ts @@ -134,15 +134,6 @@ const txTypeMap: Record = { // setup: 'setup', } -const entityTypeInitialsMap: Record = { - block: 'Bk', - contract: 'Ct', - transaction: 'Tx', - output: 'O', - address: 'A', - ip: 'I', -} - export function getEntityTypeLabel(type?: EntityType): string | undefined { return type ? entityTypeMap[type] : undefined }