Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,5 @@ outputs/*
e2e/mock-api-v2/html/*

vitest.config.*.timestamp*
.cursor/rules/nx-rules.mdc
.github/instructions/nx.instructions.md
17 changes: 16 additions & 1 deletion e2e/autoscript-apps/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["**/*"]
"ignorePatterns": [
"**/vite.config.*.timestamp*",
"**/vitest.config.*.timestamp*",
"**/*.png"
],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-explicit-any": "off"
}
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async function autoscript() {
// in central login we use an auth query param for the return of our mock 401 request
// this is to prevent the evaluation of the page before we have technically authenticated
const auth = url.searchParams.get('auth') || false;
let wellknown =
const wellknown =
url.searchParams.get('wellknown') || 'http://localhost:9443/am/.well-known/oidc-configuration';

let tokenStore = url.searchParams.get('tokenStore') || 'localStorage';
Expand Down
2 changes: 1 addition & 1 deletion e2e/autoscript-apps/src/authn-protect/autoscript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function autoscript() {
),
mergeMap(({ step, data }) => {
const cb = step.getCallbackOfType('PingOneProtectEvaluationCallback');
let pauseFlag = pauseBehaviorData === 'true' ? true : false;
const pauseFlag = pauseBehaviorData === 'true' ? true : false;
let shouldPause = false;

if (pauseFlag) {
Expand Down
4 changes: 0 additions & 4 deletions e2e/autoscript-suites/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@
}
}
},
"cbt": {
"command": "pnpm browserstack-node-sdk playwright test --config ./e2e/autoscript-suites/playwright.config.cbt.ts",
"cwd": "e2e/autoscript-suites"
},
"lint": {
"options": {
"fix": true,
Expand Down
8 changes: 7 additions & 1 deletion e2e/mock-api-v2/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*", "README.md", ".DS_Store"],
"ignorePatterns": [
"!**/*",
"README.md",
".DS_Store",
"**/vite.config.*.timestamp*",
"**/vitest.config.*.timestamp*"
],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
Expand Down
7 changes: 6 additions & 1 deletion e2e/token-vault-app/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*", "public"],
"ignorePatterns": [
"!**/*",
"public",
"**/vite.config.*.timestamp*",
"**/vitest.config.*.timestamp*"
],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
Expand Down
6 changes: 5 additions & 1 deletion e2e/token-vault-interceptor/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"ignorePatterns": [
"!**/*",
"**/vite.config.*.timestamp*",
"**/vitest.config.*.timestamp*"
],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
Expand Down
6 changes: 5 additions & 1 deletion e2e/token-vault-proxy/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"ignorePatterns": [
"!**/*",
"**/vite.config.*.timestamp*",
"**/vitest.config.*.timestamp*"
],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
Expand Down
13 changes: 7 additions & 6 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,11 @@
},
"release": {
"projects": ["packages/*"],
"releaseTagPattern": "v{version}",
"version": {
"preVersionCommand": "npx nx run-many -t build",
"generatorOptions": {
"currentVersionResolver": "git-tag",
"specifierSource": "conventional-commits"
}
"specifierSource": "conventional-commits",
"currentVersionResolver": "git-tag",
"preserveLocalDependencyProtocols": false
},
"changelog": {
"git": {
Expand All @@ -101,6 +99,9 @@
"createRelease": "github"
},
"projectChangelogs": true
},
"releaseTag": {
"pattern": "v{version}"
}
},
"plugins": [
Expand Down Expand Up @@ -159,5 +160,5 @@
"useDaemonProcess": true,
"useInferencePlugins": true,
"defaultBase": "develop",
"useLegacyCache": true
"nxCloudId": "691f768cc413573260509d11"
}
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,23 @@
"@effect/platform-node": "^0.53.26",
"@effect/schema": "^0.68.23",
"@effect/vitest": "^0.6.7",
"@nx/devkit": "20.3.3",
"@nx/esbuild": "20.3.3",
"@nx/eslint": "20.3.3",
"@nx/eslint-plugin": "20.3.3",
"@nx/express": "20.3.3",
"@nx/js": "20.3.3",
"@nx/node": "20.3.3",
"@nx/playwright": "20.3.3",
"@nx/vite": "20.3.3",
"@nx/web": "20.3.3",
"@nx/workspace": "20.3.3",
"@nx/devkit": "22.1.0",
"@nx/esbuild": "22.1.0",
"@nx/eslint": "22.1.0",
"@nx/eslint-plugin": "22.1.0",
"@nx/express": "22.1.0",
"@nx/js": "22.1.0",
"@nx/node": "22.1.0",
"@nx/playwright": "22.1.0",
"@nx/vite": "22.1.0",
"@nx/web": "22.1.0",
"@nx/workspace": "22.1.0",
"@playwright/test": "1.47.2",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.7",
"@swc/helpers": "0.5.12",
"@types/estree": "^1.0.1",
"@types/express": "4.17.17",
"@types/express": "4.17.25",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
Expand All @@ -80,19 +80,20 @@
"effect-http-node": "^0.16.1",
"esbuild": "^0.19.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-playwright": "^1.5.1",
"eslint-plugin-prettier": "^5.1.3",
"express": "^4.21.0",
"express": "4.21.2",
"fast-check": "^3.19.0",
"husky": "^8.0.3",
"jiti": "2.4.2",
"jsdom": "22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^13.2.2",
"mkcert": "^3.2.0",
"npm-cli-login": "^1.0.0",
"nx": "20.3.3",
"nx": "22.1.0",
"pkg-pr-new": "^0.0.60",
"playwright": "1.47.2",
"prettier": "^3.2.5",
Expand All @@ -106,11 +107,11 @@
"typedoc": "^0.27.4",
"typedoc-github-theme": "0.2.0",
"typedoc-plugin-rename-defaults": "^0.7.2",
"typescript": "5.6.3",
"typescript": "5.9.3",
"uuid": "^9.0.1",
"verdaccio": "^5.29.2",
"vite": "^5.4.12",
"vite-plugin-dts": "^4.2.2",
"verdaccio": "6.2.1",
"vite": "7.2.4",
"vite-plugin-dts": "4.5.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-externalize-deps": "^0.8.0",
"vite-tsconfig-paths": "^4.3.2",
Expand All @@ -129,7 +130,6 @@
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"browserstack-node-sdk": "1.34.17",
"nx-cloud": "19.1.0"
},
"pnpm": {
Expand Down
4 changes: 4 additions & 0 deletions packages/javascript-sdk/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@
{
"files": ["*.ts", "*.js"]
}
],
"ignorePatterns": [
"**/vite.config.*.timestamp*",
"**/vitest.config.*.timestamp*"
]
}
6 changes: 5 additions & 1 deletion packages/ping-protect/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"ignorePatterns": [
"!**/*",
"**/vite.config.*.timestamp*",
"**/vitest.config.*.timestamp*"
],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
Expand Down
6 changes: 5 additions & 1 deletion packages/token-vault/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"ignorePatterns": [
"!**/*",
"**/vite.config.*.timestamp*",
"**/vitest.config.*.timestamp*"
],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
Expand Down
Loading
Loading