From 049cd82b5fe1d98f9ab04a4f77576a88c77a7d65 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Wed, 18 Oct 2023 11:17:41 +0200 Subject: [PATCH 01/21] [link-adf:adf-linking-test] test commit --- .../src/lib/components/info-drawer/info-drawer.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/aca-shared/src/lib/components/info-drawer/info-drawer.component.html b/projects/aca-shared/src/lib/components/info-drawer/info-drawer.component.html index 5f07ca0f5d..0a38aa6df0 100644 --- a/projects/aca-shared/src/lib/components/info-drawer/info-drawer.component.html +++ b/projects/aca-shared/src/lib/components/info-drawer/info-drawer.component.html @@ -2,7 +2,7 @@ - + From cb768d456394f027ffce1de48e7fb0be036a880c Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Wed, 18 Oct 2023 11:25:04 +0200 Subject: [PATCH 02/21] [link-adf:adf-linking-test] Test From 0a8e7fdb4d5bf82da635636b186ef6b444f72509 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Wed, 18 Oct 2023 11:35:46 +0200 Subject: [PATCH 03/21] Add adfprod for aca shared --- projects/aca-shared/project.json | 4 +++ projects/aca-shared/tsconfig.lib.adf.json | 27 +++++++++++++++++++ projects/aca-shared/tsconfig.lib.adfprod.json | 9 +++++++ 3 files changed, 40 insertions(+) create mode 100644 projects/aca-shared/tsconfig.lib.adf.json create mode 100644 projects/aca-shared/tsconfig.lib.adfprod.json diff --git a/projects/aca-shared/project.json b/projects/aca-shared/project.json index 0d1a1b5644..55a334144b 100644 --- a/projects/aca-shared/project.json +++ b/projects/aca-shared/project.json @@ -14,8 +14,12 @@ "configurations": { "production": { "tsConfig": "projects/aca-shared/tsconfig.lib.prod.json" + }, + "adfprod": { + "tsConfig": "projects/aca-shared/tsconfig.lib.adfprod.json" } }, + "defaultConfiguration": "production", "outputs": ["{workspaceRoot}/dist/@alfresco/aca-shared"] }, diff --git a/projects/aca-shared/tsconfig.lib.adf.json b/projects/aca-shared/tsconfig.lib.adf.json new file mode 100644 index 0000000000..108ef68a07 --- /dev/null +++ b/projects/aca-shared/tsconfig.lib.adf.json @@ -0,0 +1,27 @@ +{ + "extends": "../../tsconfig.adf.json", + "compilerOptions": { + "outDir": "../../out-tsc/lib", + "declarationMap": true, + "target": "es2020", + "module": "es2015", + "moduleResolution": "node", + "declaration": true, + "sourceMap": true, + "inlineSources": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "importHelpers": true, + "types": [], + "lib": ["dom", "es2018"], + "paths": {} + }, + "angularCompilerOptions": { + "skipTemplateCodegen": true, + "strictMetadataEmit": true, + "fullTemplateTypeCheck": true, + "strictInjectionParameters": true, + "enableResourceInlining": true + }, + "exclude": ["test.ts", "**/*.spec.ts"] +} diff --git a/projects/aca-shared/tsconfig.lib.adfprod.json b/projects/aca-shared/tsconfig.lib.adfprod.json new file mode 100644 index 0000000000..8dbddb4d27 --- /dev/null +++ b/projects/aca-shared/tsconfig.lib.adfprod.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig.lib.adf.json", + "compilerOptions": { + "declarationMap": false + }, + "angularCompilerOptions": { + "compilationMode": "partial" + } +} From f0a0b153b2e5eb08026a50d2282fcc12ad63a198 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Wed, 18 Oct 2023 11:35:50 +0200 Subject: [PATCH 04/21] [link-adf:adf-linking-test] Test From b0fc873211c1b7cea0b8b5b5181f3aaf49ca82f3 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Wed, 18 Oct 2023 14:30:47 +0200 Subject: [PATCH 05/21] Add adfprod config --- projects/aca-content/project.json | 3 ++ projects/aca-content/tsconfig.lib.adf.json | 45 +++++++++++++++++++ .../aca-content/tsconfig.lib.adfprod.json | 15 +++++++ projects/aca-shared/tsconfig.lib.adf.json | 14 +++++- tsconfig.adf.json | 2 +- 5 files changed, 77 insertions(+), 2 deletions(-) create mode 100644 projects/aca-content/tsconfig.lib.adf.json create mode 100644 projects/aca-content/tsconfig.lib.adfprod.json diff --git a/projects/aca-content/project.json b/projects/aca-content/project.json index 471e3fa152..87218ec79b 100644 --- a/projects/aca-content/project.json +++ b/projects/aca-content/project.json @@ -16,6 +16,9 @@ }, "development": { "tsConfig": "projects/aca-content/tsconfig.lib.json" + }, + "adfprod": { + "tsConfig": "projects/aca-content/tsconfig.lib.adfprod.json" } }, "defaultConfiguration": "production", diff --git a/projects/aca-content/tsconfig.lib.adf.json b/projects/aca-content/tsconfig.lib.adf.json new file mode 100644 index 0000000000..cf8a18162e --- /dev/null +++ b/projects/aca-content/tsconfig.lib.adf.json @@ -0,0 +1,45 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "outDir": "../../out-tsc/lib", + "target": "es2020", + "moduleResolution": "node", + "sourceMap": true, + "declaration": true, + "declarationMap": true, + "inlineSources": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "importHelpers": true, + "types": [], + "lib": [ + "dom", + "es2020" + ], + "paths": { + "@alfresco/adf-testing": ["../../alfresco-ng2-components/lib/testing"], + "@alfresco/adf-testing/shared": ["../../alfresco-ng2-components/lib/testing/src/lib/shared"], + "@alfresco/adf-core": ["../../alfresco-ng2-components/lib/core"], + "@alfresco/adf-core/*": ["../../alfresco-ng2-components/lib/core/*/public-api.ts"], + "@alfresco/adf-core/shell": ["../../alfresco-ng2-components/lib/core/shell/src/index.ts"], + "@alfresco/adf-core/auth": ["../../alfresco-ng2-components/lib/core/auth/src/index.ts"], + "@alfresco/adf-core/api": ["../../alfresco-ng2-components/lib/core/api/src/index.ts"], + "@alfresco/adf-extensions": ["../../alfresco-ng2-components/lib/extensions"], + "@alfresco/adf-content-services": ["../../alfresco-ng2-components/lib/content-services"], + "@alfresco/adf-process-services-cloud": ["../../alfresco-ng2-components/lib/process-services-cloud"], + "@alfresco/adf-process-services": ["../../alfresco-ng2-components/lib/process-services"], + } + }, + "angularCompilerOptions": { + "skipTemplateCodegen": true, + "strictMetadataEmit": true, + "enableResourceInlining": true, + "fullTemplateTypeCheck": true, + "strictInjectionParameters": true + }, + "exclude": [ + "test.ts", + "**/*.spec.ts" + ] +} diff --git a/projects/aca-content/tsconfig.lib.adfprod.json b/projects/aca-content/tsconfig.lib.adfprod.json new file mode 100644 index 0000000000..af4a149739 --- /dev/null +++ b/projects/aca-content/tsconfig.lib.adfprod.json @@ -0,0 +1,15 @@ +/* To learn more about this file see: https://angular.io/config/tsconfig. */ +{ + "extends": "./tsconfig.lib.adf.json", + "compilerOptions": { + "declarationMap": false, + "paths": { + "@alfresco/aca-shared": ["dist/@alfresco/aca-shared"], + "@alfresco/aca-shared/store": ["dist/@alfresco/aca-shared/store"], + "@alfresco/aca-shared/rules": ["dist/@alfresco/aca-shared/rules"] + }, + }, + "angularCompilerOptions": { + "compilationMode": "partial" + } +} diff --git a/projects/aca-shared/tsconfig.lib.adf.json b/projects/aca-shared/tsconfig.lib.adf.json index 108ef68a07..18a8f80591 100644 --- a/projects/aca-shared/tsconfig.lib.adf.json +++ b/projects/aca-shared/tsconfig.lib.adf.json @@ -14,7 +14,19 @@ "importHelpers": true, "types": [], "lib": ["dom", "es2018"], - "paths": {} + "paths": { + "@alfresco/adf-testing": ["../../alfresco-ng2-components/lib/testing"], + "@alfresco/adf-testing/shared": ["../../alfresco-ng2-components/lib/testing/src/lib/shared"], + "@alfresco/adf-core": ["../../alfresco-ng2-components/lib/core"], + "@alfresco/adf-core/*": ["../../alfresco-ng2-components/lib/core/*/public-api.ts"], + "@alfresco/adf-core/shell": ["../../alfresco-ng2-components/lib/core/shell/src/index.ts"], + "@alfresco/adf-core/auth": ["../../alfresco-ng2-components/lib/core/auth/src/index.ts"], + "@alfresco/adf-core/api": ["../../alfresco-ng2-components/lib/core/api/src/index.ts"], + "@alfresco/adf-extensions": ["../../alfresco-ng2-components/lib/extensions"], + "@alfresco/adf-content-services": ["../../alfresco-ng2-components/lib/content-services"], + "@alfresco/adf-process-services-cloud": ["../../alfresco-ng2-components/lib/process-services-cloud"], + "@alfresco/adf-process-services": ["../../alfresco-ng2-components/lib/process-services"], + } }, "angularCompilerOptions": { "skipTemplateCodegen": true, diff --git a/tsconfig.adf.json b/tsconfig.adf.json index 015743b3b9..62be407cd1 100644 --- a/tsconfig.adf.json +++ b/tsconfig.adf.json @@ -4,7 +4,7 @@ "baseUrl": "./", "downlevelIteration": true, "importHelpers": true, - "outDir": "./dist/out-tsc", + "outDir": "./dist/out-tsc/lib", "sourceMap": true, "declaration": false, "module": "esnext", From 75428b4296201f928cbd3935811c513bb556c73b Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Wed, 18 Oct 2023 14:31:02 +0200 Subject: [PATCH 06/21] [link-adf:adf-linking-test] Test From 1dcd8679422ec05b0b19179122769095e00887e2 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Wed, 18 Oct 2023 14:32:49 +0200 Subject: [PATCH 07/21] Fix ADF tsconfig --- tsconfig.adf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.adf.json b/tsconfig.adf.json index 62be407cd1..015743b3b9 100644 --- a/tsconfig.adf.json +++ b/tsconfig.adf.json @@ -4,7 +4,7 @@ "baseUrl": "./", "downlevelIteration": true, "importHelpers": true, - "outDir": "./dist/out-tsc/lib", + "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, "module": "esnext", From e7e8fb2c7da1eb2f500d11681ece3a972a13caf1 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Wed, 18 Oct 2023 14:33:08 +0200 Subject: [PATCH 08/21] [link-adf:adf-linking-test] Test From 7f9efa46203aaab70014011584ea9af9eea8917f Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Thu, 19 Oct 2023 16:19:36 +0200 Subject: [PATCH 09/21] Use adf configuration for CI --- .github/actions/adf-linking/action.yml | 2 +- .github/actions/setup/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/adf-linking/action.yml b/.github/actions/adf-linking/action.yml index f5f76c0dee..d5bc378aaf 100644 --- a/.github/actions/adf-linking/action.yml +++ b/.github/actions/adf-linking/action.yml @@ -9,7 +9,7 @@ runs: shell: bash run: | if [[ $COMMIT_MESSAGE == *"[link-adf:"* ]]; then - echo "BUILD_OPTS=--configuration=adfprod,e2e" >> $GITHUB_ENV + echo "BUILD_OPTS=--configuration=adfp" >> $GITHUB_ENV echo "TEST_OPTS=--configuration=adfprod" >> $GITHUB_ENV echo "E2E_PROTRACTOR_OPTS=--with-local-adf" >> $GITHUB_ENV echo "E2E_TSCONFIG=tsconfig.e2e.adf.json" >> $GITHUB_ENV diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index facd300f29..a85ca387a1 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -7,7 +7,7 @@ runs: - name: setup variables shell: bash run: | - echo "BUILD_OPTS=--configuration=production,e2e" >> $GITHUB_ENV + echo "BUILD_OPTS=--configuration=production" >> $GITHUB_ENV echo "TEST_OPTS=" >> $GITHUB_ENV echo "E2E_PROTRACTOR_OPTS=" >> $GITHUB_ENV echo "E2E_TSCONFIG=tsconfig.e2e.json" >> $GITHUB_ENV From 9f96035a5feddc4cca4092f941619f1f153c7698 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Thu, 19 Oct 2023 16:19:44 +0200 Subject: [PATCH 10/21] [link-adf:adf-linking-test] Test From 00bbb0ed848e7746c3278bcb3acbb0496f26ad9d Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Thu, 19 Oct 2023 16:35:06 +0200 Subject: [PATCH 11/21] Typo fix --- .github/actions/adf-linking/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/adf-linking/action.yml b/.github/actions/adf-linking/action.yml index d5bc378aaf..ff6504823c 100644 --- a/.github/actions/adf-linking/action.yml +++ b/.github/actions/adf-linking/action.yml @@ -9,7 +9,7 @@ runs: shell: bash run: | if [[ $COMMIT_MESSAGE == *"[link-adf:"* ]]; then - echo "BUILD_OPTS=--configuration=adfp" >> $GITHUB_ENV + echo "BUILD_OPTS=--configuration=adf" >> $GITHUB_ENV echo "TEST_OPTS=--configuration=adfprod" >> $GITHUB_ENV echo "E2E_PROTRACTOR_OPTS=--with-local-adf" >> $GITHUB_ENV echo "E2E_TSCONFIG=tsconfig.e2e.adf.json" >> $GITHUB_ENV From fa2c85ce70a19965c252795867449100ef369532 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Thu, 19 Oct 2023 16:35:09 +0200 Subject: [PATCH 12/21] [link-adf:adf-linking-test] Test From d720a40fbb8d44f775e11e5712c102458920b585 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Thu, 19 Oct 2023 20:30:35 +0200 Subject: [PATCH 13/21] [link-adf:adf-linking-test] Test From eb290d98316485ce5bae381217a941ab21123b45 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Thu, 19 Oct 2023 20:35:57 +0200 Subject: [PATCH 14/21] Test adfprod --- .github/actions/adf-linking/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/adf-linking/action.yml b/.github/actions/adf-linking/action.yml index ff6504823c..21308ee4af 100644 --- a/.github/actions/adf-linking/action.yml +++ b/.github/actions/adf-linking/action.yml @@ -9,7 +9,7 @@ runs: shell: bash run: | if [[ $COMMIT_MESSAGE == *"[link-adf:"* ]]; then - echo "BUILD_OPTS=--configuration=adf" >> $GITHUB_ENV + echo "BUILD_OPTS=--configuration=adfprod" >> $GITHUB_ENV echo "TEST_OPTS=--configuration=adfprod" >> $GITHUB_ENV echo "E2E_PROTRACTOR_OPTS=--with-local-adf" >> $GITHUB_ENV echo "E2E_TSCONFIG=tsconfig.e2e.adf.json" >> $GITHUB_ENV From 2879e4e20e6344107ec8ffa0bd3ae5582f848aa9 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Thu, 19 Oct 2023 20:36:02 +0200 Subject: [PATCH 15/21] [link-adf:adf-linking-test] Test From a31e191e6a76d80bbb81488ecd5ac862acbebf54 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Fri, 20 Oct 2023 08:25:00 +0200 Subject: [PATCH 16/21] Fix tsconfigd for libs --- .github/actions/adf-linking/action.yml | 2 +- .../manage-rules.smart-component.html | 2 +- projects/aca-content/tsconfig.lib.adf.json | 17 ++--------------- projects/aca-shared/project.json | 4 ++-- projects/aca-shared/tsconfig.lib.adf.json | 15 +-------------- 5 files changed, 7 insertions(+), 33 deletions(-) diff --git a/.github/actions/adf-linking/action.yml b/.github/actions/adf-linking/action.yml index 21308ee4af..ff6504823c 100644 --- a/.github/actions/adf-linking/action.yml +++ b/.github/actions/adf-linking/action.yml @@ -9,7 +9,7 @@ runs: shell: bash run: | if [[ $COMMIT_MESSAGE == *"[link-adf:"* ]]; then - echo "BUILD_OPTS=--configuration=adfprod" >> $GITHUB_ENV + echo "BUILD_OPTS=--configuration=adf" >> $GITHUB_ENV echo "TEST_OPTS=--configuration=adfprod" >> $GITHUB_ENV echo "E2E_PROTRACTOR_OPTS=--with-local-adf" >> $GITHUB_ENV echo "E2E_TSCONFIG=tsconfig.e2e.adf.json" >> $GITHUB_ENV diff --git a/projects/aca-content/folder-rules/src/manage-rules/manage-rules.smart-component.html b/projects/aca-content/folder-rules/src/manage-rules/manage-rules.smart-component.html index a2b38e9c7a..8c015c752f 100644 --- a/projects/aca-content/folder-rules/src/manage-rules/manage-rules.smart-component.html +++ b/projects/aca-content/folder-rules/src/manage-rules/manage-rules.smart-component.html @@ -20,7 +20,7 @@

{{ 'ACA_FOLDER_RULES.ACTIONS.MANAGE_RULES' | translat - + folder

{{ (folderInfo$ | async).name }}:{{'ACA_FOLDER_RULES.MANAGE_RULES.TOOLBAR.BREADCRUMB.RULES' | translate}}

diff --git a/projects/aca-content/tsconfig.lib.adf.json b/projects/aca-content/tsconfig.lib.adf.json index cf8a18162e..8dbf167a84 100644 --- a/projects/aca-content/tsconfig.lib.adf.json +++ b/projects/aca-content/tsconfig.lib.adf.json @@ -1,6 +1,6 @@ /* To learn more about this file see: https://angular.io/config/tsconfig. */ { - "extends": "../../tsconfig.json", + "extends": "../../tsconfig.adf.json", "compilerOptions": { "outDir": "../../out-tsc/lib", "target": "es2020", @@ -16,20 +16,7 @@ "lib": [ "dom", "es2020" - ], - "paths": { - "@alfresco/adf-testing": ["../../alfresco-ng2-components/lib/testing"], - "@alfresco/adf-testing/shared": ["../../alfresco-ng2-components/lib/testing/src/lib/shared"], - "@alfresco/adf-core": ["../../alfresco-ng2-components/lib/core"], - "@alfresco/adf-core/*": ["../../alfresco-ng2-components/lib/core/*/public-api.ts"], - "@alfresco/adf-core/shell": ["../../alfresco-ng2-components/lib/core/shell/src/index.ts"], - "@alfresco/adf-core/auth": ["../../alfresco-ng2-components/lib/core/auth/src/index.ts"], - "@alfresco/adf-core/api": ["../../alfresco-ng2-components/lib/core/api/src/index.ts"], - "@alfresco/adf-extensions": ["../../alfresco-ng2-components/lib/extensions"], - "@alfresco/adf-content-services": ["../../alfresco-ng2-components/lib/content-services"], - "@alfresco/adf-process-services-cloud": ["../../alfresco-ng2-components/lib/process-services-cloud"], - "@alfresco/adf-process-services": ["../../alfresco-ng2-components/lib/process-services"], - } + ] }, "angularCompilerOptions": { "skipTemplateCodegen": true, diff --git a/projects/aca-shared/project.json b/projects/aca-shared/project.json index 55a334144b..5a80f3b2d1 100644 --- a/projects/aca-shared/project.json +++ b/projects/aca-shared/project.json @@ -15,8 +15,8 @@ "production": { "tsConfig": "projects/aca-shared/tsconfig.lib.prod.json" }, - "adfprod": { - "tsConfig": "projects/aca-shared/tsconfig.lib.adfprod.json" + "adf": { + "tsConfig": "projects/aca-shared/tsconfig.lib.adf.json" } }, diff --git a/projects/aca-shared/tsconfig.lib.adf.json b/projects/aca-shared/tsconfig.lib.adf.json index 18a8f80591..c1f7c5c210 100644 --- a/projects/aca-shared/tsconfig.lib.adf.json +++ b/projects/aca-shared/tsconfig.lib.adf.json @@ -13,20 +13,7 @@ "experimentalDecorators": true, "importHelpers": true, "types": [], - "lib": ["dom", "es2018"], - "paths": { - "@alfresco/adf-testing": ["../../alfresco-ng2-components/lib/testing"], - "@alfresco/adf-testing/shared": ["../../alfresco-ng2-components/lib/testing/src/lib/shared"], - "@alfresco/adf-core": ["../../alfresco-ng2-components/lib/core"], - "@alfresco/adf-core/*": ["../../alfresco-ng2-components/lib/core/*/public-api.ts"], - "@alfresco/adf-core/shell": ["../../alfresco-ng2-components/lib/core/shell/src/index.ts"], - "@alfresco/adf-core/auth": ["../../alfresco-ng2-components/lib/core/auth/src/index.ts"], - "@alfresco/adf-core/api": ["../../alfresco-ng2-components/lib/core/api/src/index.ts"], - "@alfresco/adf-extensions": ["../../alfresco-ng2-components/lib/extensions"], - "@alfresco/adf-content-services": ["../../alfresco-ng2-components/lib/content-services"], - "@alfresco/adf-process-services-cloud": ["../../alfresco-ng2-components/lib/process-services-cloud"], - "@alfresco/adf-process-services": ["../../alfresco-ng2-components/lib/process-services"], - } + "lib": ["dom", "es2018"] }, "angularCompilerOptions": { "skipTemplateCodegen": true, From 1c2e0a599d6a6e83d84a722e9842bbdad2c528df Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Fri, 20 Oct 2023 08:25:38 +0200 Subject: [PATCH 17/21] [link-adf:adf-linking-test] Test From c9a5afd4c820f70c110960341033db88b1db95ce Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Fri, 20 Oct 2023 08:27:37 +0200 Subject: [PATCH 18/21] adfpro -> adf --- projects/aca-content/project.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/aca-content/project.json b/projects/aca-content/project.json index 87218ec79b..68d62500c8 100644 --- a/projects/aca-content/project.json +++ b/projects/aca-content/project.json @@ -17,7 +17,7 @@ "development": { "tsConfig": "projects/aca-content/tsconfig.lib.json" }, - "adfprod": { + "adf": { "tsConfig": "projects/aca-content/tsconfig.lib.adfprod.json" } }, From 6e3254ab9500e31d2f1885c5677742a7c794a4e2 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Fri, 20 Oct 2023 08:27:46 +0200 Subject: [PATCH 19/21] [link-adf:adf-linking-test] Test From 11bed8964cdb29acaa33e7aace2f590fed0295d5 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Fri, 20 Oct 2023 08:59:29 +0200 Subject: [PATCH 20/21] test --- tsconfig.adf.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tsconfig.adf.json b/tsconfig.adf.json index 015743b3b9..62a81409af 100644 --- a/tsconfig.adf.json +++ b/tsconfig.adf.json @@ -21,18 +21,18 @@ "typeRoots": ["node_modules/@types"], "lib": ["es2019", "dom"], "paths": { - "@alfresco/adf-testing": ["../alfresco-ng2-components/lib/testing"], - "@alfresco/adf-testing/shared": ["../alfresco-ng2-components/lib/testing/src/lib/shared"], + "@alfresco/adf-testing": ["../../alfresco-ng2-components/lib/testing"], + "@alfresco/adf-testing/shared": ["../../alfresco-ng2-components/lib/testing/src/lib/shared"], "@alfresco/playwright-shared": ["projects/aca-playwright-shared/src/index.ts"], - "@alfresco/adf-core": ["../alfresco-ng2-components/lib/core"], - "@alfresco/adf-core/*": ["../alfresco-ng2-components/lib/core/*/public-api.ts"], - "@alfresco/adf-core/shell": ["../alfresco-ng2-components/lib/core/shell/src/index.ts"], - "@alfresco/adf-core/auth": ["../alfresco-ng2-components/lib/core/auth/src/index.ts"], - "@alfresco/adf-core/api": ["../alfresco-ng2-components/lib/core/api/src/index.ts"], - "@alfresco/adf-extensions": ["../alfresco-ng2-components/lib/extensions"], - "@alfresco/adf-content-services": ["../alfresco-ng2-components/lib/content-services"], - "@alfresco/adf-process-services-cloud": ["../alfresco-ng2-components/lib/process-services-cloud"], - "@alfresco/adf-process-services": ["../alfresco-ng2-components/lib/process-services"], + "@alfresco/adf-core": ["../../alfresco-ng2-components/lib/core"], + "@alfresco/adf-core/*": ["../../alfresco-ng2-components/lib/core/*/public-api.ts"], + "@alfresco/adf-core/shell": ["../../alfresco-ng2-components/lib/core/shell/src/index.ts"], + "@alfresco/adf-core/auth": ["../../alfresco-ng2-components/lib/core/auth/src/index.ts"], + "@alfresco/adf-core/api": ["../../alfresco-ng2-components/lib/core/api/src/index.ts"], + "@alfresco/adf-extensions": ["../../alfresco-ng2-components/lib/extensions"], + "@alfresco/adf-content-services": ["../../alfresco-ng2-components/lib/content-services"], + "@alfresco/adf-process-services-cloud": ["../../alfresco-ng2-components/lib/process-services-cloud"], + "@alfresco/adf-process-services": ["../../alfresco-ng2-components/lib/process-services"], "@alfresco/aca-shared": ["projects/aca-shared/src/public-api.ts"], "@alfresco/aca-shared/store": ["projects/aca-shared/store/src/public-api.ts"], "@alfresco/aca-shared/rules": ["projects/aca-shared/rules/src/public-api.ts"], From 134d58a7a49be70f1c219ef8f6978ff9e6fd5d64 Mon Sep 17 00:00:00 2001 From: MichalKinas Date: Fri, 20 Oct 2023 08:59:33 +0200 Subject: [PATCH 21/21] [link-adf:adf-linking-test] Test