Skip to content

Commit a3d5027

Browse files
committed
fix: poc stats plugin v2
1 parent 5868ef2 commit a3d5027

File tree

88 files changed

+40525
-1777386
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+40525
-1777386
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,5 @@ Thumbs.db
4848

4949
# Nx workspace cache
5050
.nx
51+
52+
.angular

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
/coverage
44
/.nx
55
__snapshots__
6+
7+
.angular

code-pushup.config.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import 'dotenv/config';
22
import { z } from 'zod';
33
import {
4-
bundleStatsCoreConfig,
54
coverageCoreConfigNx,
65
eslintCoreConfigNx,
76
jsDocsCoreConfig,
@@ -53,5 +52,4 @@ export default mergeConfigs(
5352
'!**/implementation/**',
5453
'!**/internal/**',
5554
]),
56-
await bundleStatsCoreConfig(),
5755
);

cpu/CPU.20250618.024632.56789.0.001.cpuprofile

Lines changed: 0 additions & 1 deletion
This file was deleted.

cpu/CPU.20250618.025422.56989.0.001.cpuprofile

Lines changed: 0 additions & 1 deletion
This file was deleted.

cpu/CPU.20250618.025606.57094.0.001.cpuprofile

Lines changed: 0 additions & 1 deletion
This file was deleted.

nx.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@
3434
"packageRoot": "dist/{projectRoot}",
3535
"registry": "https://registry.npmjs.org/"
3636
}
37+
},
38+
"@angular/build:application": {
39+
"cache": true,
40+
"dependsOn": ["^build"],
41+
"inputs": ["production", "^production"]
3742
}
3843
},
3944
"namedInputs": {
@@ -59,7 +64,14 @@
5964
"appsDir": "examples",
6065
"libsDir": "packages"
6166
},
62-
"generators": {},
67+
"generators": {
68+
"@nx/angular:application": {
69+
"e2eTestRunner": "none",
70+
"linter": "eslint",
71+
"style": "css",
72+
"unitTestRunner": "none"
73+
}
74+
},
6375
"release": {
6476
"projects": ["packages/*"],
6577
"projectsRelationship": "fixed",

0 commit comments

Comments
 (0)