Skip to content

Commit 0590582

Browse files
committed
chore: update-nx
1 parent f9d571b commit 0590582

15 files changed

Lines changed: 3590 additions & 3587 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,5 @@ outputs/*
8686
e2e/mock-api-v2/html/*
8787

8888
vitest.config.*.timestamp*
89+
.cursor/rules/nx-rules.mdc
90+
.github/instructions/nx.instructions.md

e2e/autoscript-apps/.eslintrc.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
{
22
"extends": ["../../.eslintrc.json"],
3-
"ignorePatterns": ["**/*"]
3+
"ignorePatterns": [
4+
"**/vite.config.*.timestamp*",
5+
"**/vitest.config.*.timestamp*",
6+
"**/*.png"
7+
],
8+
"overrides": [
9+
{
10+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
11+
"rules": {
12+
"@typescript-eslint/ban-ts-comment": "off",
13+
"@typescript-eslint/no-unused-vars": "off",
14+
"@typescript-eslint/no-use-before-define": "off",
15+
"@typescript-eslint/no-explicit-any": "off"
16+
}
17+
}
18+
]
419
}

e2e/autoscript-apps/src/authn-central-login-wellknown/autoscript.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async function autoscript() {
2828
// in central login we use an auth query param for the return of our mock 401 request
2929
// this is to prevent the evaluation of the page before we have technically authenticated
3030
const auth = url.searchParams.get('auth') || false;
31-
let wellknown =
31+
const wellknown =
3232
url.searchParams.get('wellknown') || 'http://localhost:9443/am/.well-known/oidc-configuration';
3333

3434
let tokenStore = url.searchParams.get('tokenStore') || 'localStorage';

e2e/autoscript-apps/src/authn-protect/autoscript.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function autoscript() {
9393
),
9494
mergeMap(({ step, data }) => {
9595
const cb = step.getCallbackOfType('PingOneProtectEvaluationCallback');
96-
let pauseFlag = pauseBehaviorData === 'true' ? true : false;
96+
const pauseFlag = pauseBehaviorData === 'true' ? true : false;
9797
let shouldPause = false;
9898

9999
if (pauseFlag) {

e2e/autoscript-suites/project.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@
1515
}
1616
}
1717
},
18-
"cbt": {
19-
"command": "pnpm browserstack-node-sdk playwright test --config ./e2e/autoscript-suites/playwright.config.cbt.ts",
20-
"cwd": "e2e/autoscript-suites"
21-
},
2218
"lint": {
2319
"options": {
2420
"fix": true,

e2e/mock-api-v2/.eslintrc.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"extends": ["../../.eslintrc.json"],
3-
"ignorePatterns": ["!**/*", "README.md", ".DS_Store"],
3+
"ignorePatterns": [
4+
"!**/*",
5+
"README.md",
6+
".DS_Store",
7+
"**/vite.config.*.timestamp*",
8+
"**/vitest.config.*.timestamp*"
9+
],
410
"overrides": [
511
{
612
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],

e2e/token-vault-app/.eslintrc.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
22
"extends": ["../../.eslintrc.json"],
3-
"ignorePatterns": ["!**/*", "public"],
3+
"ignorePatterns": [
4+
"!**/*",
5+
"public",
6+
"**/vite.config.*.timestamp*",
7+
"**/vitest.config.*.timestamp*"
8+
],
49
"overrides": [
510
{
611
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],

e2e/token-vault-interceptor/.eslintrc.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"extends": ["../../.eslintrc.json"],
3-
"ignorePatterns": ["!**/*"],
3+
"ignorePatterns": [
4+
"!**/*",
5+
"**/vite.config.*.timestamp*",
6+
"**/vitest.config.*.timestamp*"
7+
],
48
"overrides": [
59
{
610
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],

e2e/token-vault-proxy/.eslintrc.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"extends": ["../../.eslintrc.json"],
3-
"ignorePatterns": ["!**/*"],
3+
"ignorePatterns": [
4+
"!**/*",
5+
"**/vite.config.*.timestamp*",
6+
"**/vitest.config.*.timestamp*"
7+
],
48
"overrides": [
59
{
610
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],

nx.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,11 @@
8484
},
8585
"release": {
8686
"projects": ["packages/*"],
87-
"releaseTagPattern": "v{version}",
8887
"version": {
8988
"preVersionCommand": "npx nx run-many -t build",
90-
"generatorOptions": {
91-
"currentVersionResolver": "git-tag",
92-
"specifierSource": "conventional-commits"
93-
}
89+
"specifierSource": "conventional-commits",
90+
"currentVersionResolver": "git-tag",
91+
"preserveLocalDependencyProtocols": false
9492
},
9593
"changelog": {
9694
"git": {
@@ -101,6 +99,9 @@
10199
"createRelease": "github"
102100
},
103101
"projectChangelogs": true
102+
},
103+
"releaseTag": {
104+
"pattern": "v{version}"
104105
}
105106
},
106107
"plugins": [
@@ -159,5 +160,5 @@
159160
"useDaemonProcess": true,
160161
"useInferencePlugins": true,
161162
"defaultBase": "develop",
162-
"useLegacyCache": true
163+
"nxCloudId": "691f768cc413573260509d11"
163164
}

0 commit comments

Comments
 (0)