Skip to content

Commit

Permalink
Add nx
Browse files Browse the repository at this point in the history
  • Loading branch information
edlu77 committed Feb 13, 2024
1 parent 90435e8 commit 1940731
Show file tree
Hide file tree
Showing 8 changed files with 14,809 additions and 8,381 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/raw-data
container.sif
website/debug.log
.nx
2 changes: 2 additions & 0 deletions website/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,5 @@ Thumbs.db

# Proxy Configuration
proxy.config.json

.nx/cache
7 changes: 7 additions & 0 deletions website/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"nrwl.angular-console",
"angular.ng-template",
"dbaeumer.vscode-eslint"
]
}
164 changes: 0 additions & 164 deletions website/angular.json

This file was deleted.

55 changes: 55 additions & 0 deletions website/nx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
"build": {
"cache": true,
"dependsOn": [
"^build"
],
"inputs": [
"production",
"^production"
]
},
"test": {
"cache": true,
"inputs": [
"default",
"^production",
"{workspaceRoot}/karma.conf.js"
]
},
"lint": {
"cache": true,
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json"
]
},
"e2e": {
"inputs": [
"default",
"^production"
]
}
},
"affected": {
"defaultBase": "main"
},
"namedInputs": {
"sharedGlobals": [],
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"production": [
"default",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/**/*.spec.[jt]s",
"!{projectRoot}/karma.conf.js",
"!{projectRoot}/.eslintrc.json",
"!{projectRoot}/eslint.config.js"
]
},
"nxCloudAccessToken": "YTQ0M2Y3ODAtYzM5NC00ZjY4LTkyZjEtZjA2Y2M4NGM2N2JhfHJlYWQtd3JpdGU="
}
Loading

0 comments on commit 1940731

Please sign in to comment.