Skip to content

Commit

Permalink
NX Cloud Token and Workspace Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
blairlierman committed Jan 13, 2024
1 parent f0329ba commit 55b15bc
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ speed-measure-plugin*.json
/connect.lock
/coverage
/libpeerconnection.log
/.nx
npm-debug.log
yarn-error.log
testem.log
Expand Down
7 changes: 7 additions & 0 deletions .jest-board-game-web-apps.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"folders": [
{
"path": "."
}
]
}
49 changes: 44 additions & 5 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,49 @@
]
},
"lint": {
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json"
]
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"],
"cache": true
},
"build": {
"inputs": ["production", "^production"],
"cache": true
},
"e2e": {
"cache": true,
"inputs": ["default", "^production"]
},
"@nx/jest:jest": {
"inputs": ["default", "^default", "{workspaceRoot}/jest.preset.js"],
"cache": true,
"options": {
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
}
}
}
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [
"{workspaceRoot}/angular.json",
"{workspaceRoot}/tslint.json",
"{workspaceRoot}/nx.json",
"{workspaceRoot}/tsconfig.base.json"
],
"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",
"!{projectRoot}/**/*.spec.[jt]s",
"!{projectRoot}/karma.conf.js"
]
},
"nxCloudAccessToken": "YmNkMzMwMjItNjQwYS00MTEyLTkxZTgtYTkwYmQzMGFmOGEyfHJlYWQtd3JpdGU="
}

0 comments on commit 55b15bc

Please sign in to comment.