Skip to content

Commit 2407545

Browse files
committed
chore: update angular, add nx
1 parent 96bbc78 commit 2407545

7 files changed

Lines changed: 19655 additions & 6398 deletions

File tree

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,10 @@ testem.log
4040
# System files
4141
.DS_Store
4242
Thumbs.db
43+
44+
45+
46+
.nx/cache
47+
.nx/workspace-data
48+
.cursor/rules/nx-rules.mdc
49+
.github/instructions/nx.instructions.md

angular.json

Lines changed: 0 additions & 96 deletions
This file was deleted.

nx.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"$schema": "./node_modules/nx/schemas/nx-schema.json",
3+
"targetDefaults": {
4+
"build": {
5+
"cache": true,
6+
"dependsOn": ["^build"],
7+
"inputs": ["production", "^production"]
8+
},
9+
"test": {
10+
"cache": true,
11+
"inputs": ["default", "^production"]
12+
},
13+
"lint": {
14+
"cache": true,
15+
"inputs": ["default"]
16+
}
17+
},
18+
"defaultBase": "master",
19+
"namedInputs": {
20+
"sharedGlobals": [],
21+
"default": ["{projectRoot}/**/*", "sharedGlobals"],
22+
"production": [
23+
"default",
24+
"!{projectRoot}/tsconfig.spec.json",
25+
"!{projectRoot}/**/*.spec.[jt]s",
26+
"!{projectRoot}/.eslintrc.json",
27+
"!{projectRoot}/eslint.config.cjs"
28+
]
29+
},
30+
"nxCloudId": "690b9a2272eb2d49558ed7b6"
31+
}

0 commit comments

Comments
 (0)