Skip to content

Commit

Permalink
refactor(workspace): reorganize libs (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder authored Sep 15, 2024
2 parents 1b9b51a + 0066f0c commit 9a86800
Show file tree
Hide file tree
Showing 406 changed files with 1,244 additions and 28,178 deletions.
31 changes: 20 additions & 11 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@
"options": {
"packageRoot": "dist/packages/{projectName}"
}
},
"@nx/angular:ng-packagr-lite": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"@nx/js:tsc": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
}
},
"defaultBase": "main",
Expand All @@ -54,7 +64,14 @@
},
"@nx/angular:library": {
"linter": "eslint",
"unitTestRunner": "jest"
"unitTestRunner": "jest",
"buildable": "true",
"changeDetection": "OnPush",
"flat": true,
"inlineStyle": true,
"inlineTemplate": true,
"setParserOptionsProject": true,
"style": "scss"
},
"@nx/angular:component": {
"style": "scss"
Expand Down Expand Up @@ -103,11 +120,7 @@
{
"plugin": "@nx/vite/plugin",
"options": {
"buildTargetName": "build",
"serveTargetName": "serve",
"previewTargetName": "preview",
"testTargetName": "test",
"serveStaticTargetName": "serve-static"
"testTargetName": "test"
},
"include": [
"packages/runner-app/**/*",
Expand All @@ -120,11 +133,7 @@
{
"plugin": "@nx/vite/plugin",
"options": {
"buildTargetName": "build",
"serveTargetName": "serve",
"previewTargetName": "preview",
"testTargetName": "e2e",
"serveStaticTargetName": "serve-static"
"testTargetName": "e2e"
},
"include": ["packages/esbuild-meta/**/*", "packages/runner-e2e/**/*"]
}
Expand Down
Loading

0 comments on commit 9a86800

Please sign in to comment.