Skip to content

Commit a986fb5

Browse files
committed
fix: release
1 parent de40ee6 commit a986fb5

File tree

18 files changed

+155
-47
lines changed

18 files changed

+155
-47
lines changed

libs/ab/ng-package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"zone.js",
1111
"@angular/ssr",
1212
"ngx-cookie"
13-
]
13+
],
14+
"dest": "../../dist/libs/ab"
1415
}

libs/ab/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"targets": {
77
"build": {
88
"executor": "@nx/angular:ng-packagr-lite",
9-
"outputs": ["{workspaceRoot}/dist/libs/ab"],
9+
"outputs": ["{options.outputPath}"],
1010
"options": {
1111
"project": "libs/ab/ng-package.json",
1212
"tsConfig": "libs/ab/tsconfig.lib.json"

libs/ab/tsconfig.lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "./tsconfig.json",
33
"composite": true,
44
"compilerOptions": {
5-
"outDir": "../../dist/e2e",
5+
"outDir": "../../dist/ab",
66
"lib": ["dom", "es2022"]
77
}
88
}

libs/api/ng-package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
33
"lib": {
44
"entryFile": "src/index.ts"
5-
}
5+
},
6+
"dest": "../../dist/libs/api"
67
}

libs/api/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"targets": {
99
"build": {
1010
"executor": "@nx/angular:ng-packagr-lite",
11-
"outputs": ["{workspaceRoot}/dist/libs/api"],
11+
"outputs": ["{options.outputPath}"],
1212
"options": {
1313
"project": "libs/api/ng-package.json",
1414
"tsConfig": "libs/api/tsconfig.lib.json"

libs/api/tsconfig.lib.json

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
11
{
2-
"composite": true,
32
"extends": "./tsconfig.json",
3+
"composite": true,
44
"compilerOptions": {
5-
"outDir": "../../dist/out-tsc",
6-
"declaration": true,
7-
"declarationMap": true,
8-
"inlineSources": true,
9-
"types": ["node"],
10-
"lib": ["dom", "es2021"]
11-
},
12-
"exclude": ["src/test-setup.ts", "**/*.spec.ts", "**/*.test.ts", "jest.config.ts"],
13-
"include": ["**/*.ts"]
5+
"outDir": "../../dist/api",
6+
"lib": ["dom", "es2022"]
7+
}
148
}

libs/auth/ng-package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"lib": {
44
"entryFile": "src/index.ts"
55
},
6-
"allowedNonPeerDependencies": ["ngx-cookie"]
6+
"allowedNonPeerDependencies": ["ngx-cookie"],
7+
"dest": "../../dist/libs/auth"
78
}

libs/auth/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"targets": {
99
"build": {
1010
"executor": "@nx/angular:ng-packagr-lite",
11-
"outputs": ["{workspaceRoot}/dist/libs/auth"],
11+
"outputs": ["{options.outputPath}"],
1212
"options": {
1313
"project": "libs/auth/ng-package.json",
1414
"tsConfig": "libs/auth/tsconfig.lib.json"

libs/auth/tsconfig.lib.json

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
{
22
"extends": "./tsconfig.json",
3+
"composite": true,
34
"compilerOptions": {
4-
"outDir": "../../dist/out-tsc",
5-
"declaration": true,
6-
"declarationMap": true,
7-
"inlineSources": true,
8-
"types": [],
9-
"lib": ["dom", "es2018"]
10-
},
11-
"exclude": ["src/test-setup.ts", "**/*.spec.ts", "**/*.test.ts", "jest.config.ts"],
12-
"include": ["**/*.ts"]
5+
"outDir": "../../dist/auth",
6+
"lib": ["dom", "es2022"]
7+
}
138
}

libs/linters/tsconfig.lib.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
{
22
"extends": "./tsconfig.json",
3+
"composite": true,
34
"compilerOptions": {
4-
"outDir": "../../dist/out-tsc",
5-
"declaration": true,
6-
"declarationMap": true,
7-
"inlineSources": true,
8-
"types": []
9-
},
10-
"exclude": ["src/test-setup.ts", "**/*.spec.ts", "**/*.test.ts", "jest.config.ts"],
11-
"include": ["**/*.ts"]
5+
"outDir": "../../dist/linters",
6+
"lib": ["dom", "es2022"]
7+
}
128
}

0 commit comments

Comments
 (0)