-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michael M
committed
Oct 27, 2023
1 parent
4d3d573
commit 34d01b2
Showing
13 changed files
with
15,381 additions
and
10,199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,3 +48,4 @@ testem.log | |
Thumbs.db | ||
|
||
.angular | ||
.nx/cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
const nxPreset = require('@nrwl/jest/preset').default; | ||
const nxPreset = require('@nx/jest/preset').default; | ||
|
||
module.exports = { ...nxPreset }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,42 @@ | ||
{ | ||
"$schema": "./node_modules/nx/schemas/nx-schema.json", | ||
"extends": "nx/presets/core.json", | ||
"npmScope": "public-js", | ||
"affected": { | ||
"defaultBase": "origin/main" | ||
}, | ||
"cli": { | ||
"defaultCollection": "@nrwl/workspace" | ||
}, | ||
"tasksRunnerOptions": { | ||
"default": { | ||
"runner": "@nrwl/nx-cloud", | ||
"options": { | ||
"cacheableOperations": ["build", "lint", "test", "e2e"], | ||
"accessToken": "YzcxZDRhNzgtNDg3Zi00NjExLWE0ZTAtM2VjMzBmMDU5NDc1fHJlYWQtd3JpdGU=" | ||
} | ||
} | ||
}, | ||
"pluginsConfig": { | ||
"@nrwl/js": { | ||
"@nx/js": { | ||
"analyzeSourceFiles": true | ||
} | ||
} | ||
}, | ||
"namedInputs": { | ||
"default": ["{projectRoot}/**/*", "sharedGlobals"], | ||
"sharedGlobals": [], | ||
"production": [ | ||
"default", | ||
"!{projectRoot}/.eslintrc.json", | ||
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)", | ||
"!{projectRoot}/tsconfig.spec.json", | ||
"!{projectRoot}/jest.config.[jt]s", | ||
"!{projectRoot}/src/test-setup.[jt]s" | ||
] | ||
}, | ||
"targetDefaults": { | ||
"build": { | ||
"inputs": ["production", "^production"], | ||
"cache": true | ||
}, | ||
"lint": { | ||
"cache": true, | ||
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"] | ||
}, | ||
"test": { | ||
"cache": true, | ||
"inputs": ["default", "^production"] | ||
}, | ||
"e2e": { | ||
"cache": true | ||
} | ||
}, | ||
"nxCloudAccessToken": "YzcxZDRhNzgtNDg3Zi00NjExLWE0ZTAtM2VjMzBmMDU5NDc1fHJlYWQtd3JpdGU=" | ||
} |
Oops, something went wrong.