diff --git a/contracts/captcha/package.json b/contracts/captcha/package.json index 7d6e854989..572d6dee4c 100644 --- a/contracts/captcha/package.json +++ b/contracts/captcha/package.json @@ -97,9 +97,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/contracts/common/package.json b/contracts/common/package.json index 9ea3d61905..3cf8780a7e 100644 --- a/contracts/common/package.json +++ b/contracts/common/package.json @@ -8,9 +8,9 @@ "test": "echo \"No test specified\"", "clean": "tsc --build --clean", "build": "tsc --build --verbose", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/contracts/proxy/package.json b/contracts/proxy/package.json index ce14f8ab3f..8ca9879607 100644 --- a/contracts/proxy/package.json +++ b/contracts/proxy/package.json @@ -8,9 +8,9 @@ "test": "echo \"No test specified\"", "clean": "tsc --build --clean", "build": "tsc --build --verbose", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/demos/client-bundle-example/package.json b/demos/client-bundle-example/package.json index abf338aca6..5be2bea5f4 100644 --- a/demos/client-bundle-example/package.json +++ b/demos/client-bundle-example/package.json @@ -9,9 +9,9 @@ "test": "echo \"No test specified\"", "start": "vite serve ./src --port 9232 --config vite.config.ts", "clean": "echo 'nothing to clean'", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/demos/client-example-server/package.json b/demos/client-example-server/package.json index 67a90f2efa..d35947419e 100644 --- a/demos/client-example-server/package.json +++ b/demos/client-example-server/package.json @@ -17,9 +17,9 @@ "bundle:prod": "vite build --mode=production --config ./vite.config.ts", "bundle:dev": "vite build --mode=development --config ./vite.config.ts", "clean": "tsc --build --clean", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/demos/client-example/package.json b/demos/client-example/package.json index abe062238f..0d4e596250 100644 --- a/demos/client-example/package.json +++ b/demos/client-example/package.json @@ -54,9 +54,9 @@ "bundle:prod": "vite build --mode=production --config vite.config.ts --outDir dist --emptyOutDir", "bundle:dev": "vite build --mode=development --config vite.config.ts --outDir dist --emptyOutDir", "clean": "tsc --build --clean", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/demos/client-frictionless-example/package.json b/demos/client-frictionless-example/package.json index 8e5c4d6824..f207a70065 100644 --- a/demos/client-frictionless-example/package.json +++ b/demos/client-frictionless-example/package.json @@ -37,9 +37,9 @@ "bundle:prod": "vite build --mode=production --config vite.config.ts --outDir dist --emptyOutDir", "bundle:dev": "vite build --mode=development --config vite.config.ts --outDir dist --emptyOutDir", "clean": "tsc --build --clean", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/demos/client-pow-example/package.json b/demos/client-pow-example/package.json index 0e4e7f2a5e..9c46d041ff 100644 --- a/demos/client-pow-example/package.json +++ b/demos/client-pow-example/package.json @@ -37,9 +37,9 @@ "bundle:prod": "vite build --mode=production --config vite.config.ts --outDir dist --emptyOutDir", "bundle:dev": "vite build --mode=development --config vite.config.ts --outDir dist --emptyOutDir", "clean": "tsc --build --clean", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/demos/cypress-shared/package.json b/demos/cypress-shared/package.json index 3900f87e24..809e585987 100644 --- a/demos/cypress-shared/package.json +++ b/demos/cypress-shared/package.json @@ -38,9 +38,9 @@ "cypress:run:client-bundle-example:frictionless": "CYPRESS_BASE_URL='http://localhost:9232' cypress run --env default_page='/frictionless.html'", "cypress:open:client-bundle-example:js_server": "CYPRESS_BASE_URL='http://localhost:9232' cypress open --env default_page='/jsBundleTest.html'", "cypress:run:client-bundle-example:js_server": "CYPRESS_BASE_URL='http://localhost:9232' cypress run --env default_page='/jsBundleTest.html' --spec 'cypress/e2e/captcha.cy.ts'", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/demos/provider-mock/package.json b/demos/provider-mock/package.json index 05eee5ab41..6eed19e742 100644 --- a/demos/provider-mock/package.json +++ b/demos/provider-mock/package.json @@ -13,9 +13,9 @@ "test": "echo \"No test specified\"", "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/dev/config/package.json b/dev/config/package.json index 55ea653b43..120ad05c1c 100644 --- a/dev/config/package.json +++ b/dev/config/package.json @@ -23,9 +23,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "vite build --config vite.cjs.config.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/dev/flux/package.json b/dev/flux/package.json index eacb3e81fc..91c63ab3dc 100644 --- a/dev/flux/package.json +++ b/dev/flux/package.json @@ -17,9 +17,9 @@ "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", "cli": "node dist/index.js", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/dev/gh-actions/package.json b/dev/gh-actions/package.json index 0f55bdd26b..7dd1378fa1 100644 --- a/dev/gh-actions/package.json +++ b/dev/gh-actions/package.json @@ -8,9 +8,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "start": "npx tsx src/index.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/dev/prosoponator-bot/package.json b/dev/prosoponator-bot/package.json index 32f03acfc3..c6e156bb16 100644 --- a/dev/prosoponator-bot/package.json +++ b/dev/prosoponator-bot/package.json @@ -8,9 +8,9 @@ "build": "tsc --build --verbose", "start": "npx tsx src/index.ts", "test": "echo 'No test specified'", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/dev/scripts/package.json b/dev/scripts/package.json index 265e47a0b8..0e4125f827 100644 --- a/dev/scripts/package.json +++ b/dev/scripts/package.json @@ -15,9 +15,9 @@ "deploy": "node dist/deploy/protocol.js", "cli": "node dist/cli/index.js", "setup": "node dist/cli/index.js setup", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix", diff --git a/dev/ts-brand/package.json b/dev/ts-brand/package.json index 3103be8f34..7a9c89ac73 100644 --- a/dev/ts-brand/package.json +++ b/dev/ts-brand/package.json @@ -20,9 +20,9 @@ "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", "test": "npx vitest run --config ./vite.test.config.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/dev/tsconfig-checker/package.json b/dev/tsconfig-checker/package.json index bd80751866..32becaf887 100644 --- a/dev/tsconfig-checker/package.json +++ b/dev/tsconfig-checker/package.json @@ -8,9 +8,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "start": "npx tsx src/check.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/dev/vite-plugin-watch-workspace/package.json b/dev/vite-plugin-watch-workspace/package.json index 9f8d3a7bae..d34b4b2c86 100644 --- a/dev/vite-plugin-watch-workspace/package.json +++ b/dev/vite-plugin-watch-workspace/package.json @@ -15,9 +15,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/package.json b/package.json index 65708e84c9..d45a510623 100644 --- a/package.json +++ b/package.json @@ -50,14 +50,14 @@ "test:all": "npm run ws -- --if-present test", "eslint": "npm run ws -- eslint && npm run eslint:workspace", "eslint:workspace": "npm run eslint:cmd -- '.*.*' '*.*' .vscode .github docker", - "eslint:cmd": "npx eslint --ignore-path .eslintignore --no-error-on-unmatched-pattern", + "eslint:cmd": "npx eslint --ignore-path .eslintignore --no-error-on-unmatched-pattern --cache --cache-location node_modules/.cache/eslint/.eslintcache", "eslint:contracts": "npm -w @prosopo/captcha-contract -w @prosopo/common-contract -w @prosopo/proxy-contract run eslint", "eslint:fix": "npm run ws -- eslint:fix && npm run eslint:fix:workspace", "eslint:fix:workspace": "npm run eslint:workspace -- --fix", "eslint:fix:contracts": "npm -w @prosopo/captcha-contract -w @prosopo/common-contract -w @prosopo/proxy-contract run eslint:fix", "prettier": "npm run ws -- prettier && npm run prettier:workspace", "prettier:workspace": "npm run prettier:cmd -- '.*.*' '*.*' .vscode .github docker", - "prettier:cmd": "npx prettier --no-error-on-unmatched-pattern --check --ignore-path .eslintignore --ignore-unknown", + "prettier:cmd": "npx prettier --no-error-on-unmatched-pattern --check --ignore-path .eslintignore --ignore-unknown --cache --cache-location node_modules/.cache/prettier/.prettiercache", "prettier:contracts": "npm -w @prosopo/captcha-contract -w @prosopo/common-contract -w @prosopo/proxy-contract run prettier", "prettier:fix": "npm run ws -- prettier:fix && npm run prettier:fix:workspace", "prettier:fix:workspace": "npm run prettier:workspace -- --write", diff --git a/packages/account/package.json b/packages/account/package.json index f98cc5fed3..775a804d6b 100644 --- a/packages/account/package.json +++ b/packages/account/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/api/package.json b/packages/api/package.json index d434ccd5dd..7f61326557 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/cli/package.json b/packages/cli/package.json index ccc68dfd95..bad02f9aa2 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -23,9 +23,9 @@ "test": "npx vitest run --config ./vite.test.config.ts", "cli": "node ./dist/cli.js", "start": "node ./dist/cli.js --api", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/common/package.json b/packages/common/package.json index 44de57ef93..46d7b5e6a8 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -20,9 +20,9 @@ "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", "test": "npx vitest run --config ./vite.test.config.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/contract/package.json b/packages/contract/package.json index aa09c47e33..b84370d016 100644 --- a/packages/contract/package.json +++ b/packages/contract/package.json @@ -8,9 +8,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/database/package.json b/packages/database/package.json index 96e37755ed..225872a652 100644 --- a/packages/database/package.json +++ b/packages/database/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/datasets-fs/package.json b/packages/datasets-fs/package.json index 75a49d903d..4083d15892 100644 --- a/packages/datasets-fs/package.json +++ b/packages/datasets-fs/package.json @@ -13,9 +13,9 @@ "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", "test": "npx vitest run --config ./vite.test.config.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix", diff --git a/packages/datasets/package.json b/packages/datasets/package.json index a97a9d402f..57eda94fa2 100644 --- a/packages/datasets/package.json +++ b/packages/datasets/package.json @@ -13,9 +13,9 @@ "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", "test": "npx vitest run --config ./vite.test.config.ts", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix", diff --git a/packages/env/package.json b/packages/env/package.json index 3500443e64..334201feed 100644 --- a/packages/env/package.json +++ b/packages/env/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/file-server/package.json b/packages/file-server/package.json index d3db794aa1..69cd146d19 100644 --- a/packages/file-server/package.json +++ b/packages/file-server/package.json @@ -20,9 +20,9 @@ "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", "start": "node ./dist/index.js", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/procaptcha-bundle/package.json b/packages/procaptcha-bundle/package.json index 4e2912c585..2e479fc84d 100644 --- a/packages/procaptcha-bundle/package.json +++ b/packages/procaptcha-bundle/package.json @@ -27,9 +27,9 @@ "bundle:dev": "vite build --config vite.config.ts --mode development --debug", "bundle:dev:webpack": "webpack build --config webpack.config.cjs --mode development", "bundle:prod": "vite build --config vite.config.ts --mode production", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/procaptcha-common/package.json b/packages/procaptcha-common/package.json index 51e7e9002b..f140959c6e 100644 --- a/packages/procaptcha-common/package.json +++ b/packages/procaptcha-common/package.json @@ -23,9 +23,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/procaptcha-frictionless/package.json b/packages/procaptcha-frictionless/package.json index 9fb6ba5a4d..2656f2244e 100644 --- a/packages/procaptcha-frictionless/package.json +++ b/packages/procaptcha-frictionless/package.json @@ -23,9 +23,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/procaptcha-pow/package.json b/packages/procaptcha-pow/package.json index be01dedee8..e58dab769c 100644 --- a/packages/procaptcha-pow/package.json +++ b/packages/procaptcha-pow/package.json @@ -23,9 +23,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/procaptcha-react/package.json b/packages/procaptcha-react/package.json index b830601a73..bd6fd13bd5 100644 --- a/packages/procaptcha-react/package.json +++ b/packages/procaptcha-react/package.json @@ -23,9 +23,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/procaptcha/package.json b/packages/procaptcha/package.json index ae36a5a839..8f214545d2 100644 --- a/packages/procaptcha/package.json +++ b/packages/procaptcha/package.json @@ -14,9 +14,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix", diff --git a/packages/provider/package.json b/packages/provider/package.json index 0198ef96b0..d255b2bd59 100644 --- a/packages/provider/package.json +++ b/packages/provider/package.json @@ -24,9 +24,9 @@ "test": "npx vitest run --config ./vite.test.config.ts", "mnemonic": "ts-node ./scripts/generateMnemonic.ts", "coverage": "npx c8 npm run test", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/server/package.json b/packages/server/package.json index d455c69508..7ddb634beb 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/tx/package.json b/packages/tx/package.json index e603b3026c..f11768d55c 100644 --- a/packages/tx/package.json +++ b/packages/tx/package.json @@ -8,9 +8,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/types-database/package.json b/packages/types-database/package.json index a680282c25..884fa4c8a3 100644 --- a/packages/types-database/package.json +++ b/packages/types-database/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/types-env/package.json b/packages/types-env/package.json index 20d9b1f123..93bf2fe917 100644 --- a/packages/types-env/package.json +++ b/packages/types-env/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/types/package.json b/packages/types/package.json index be68aa5409..d0399791e1 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/packages/util/package.json b/packages/util/package.json index 98a3cd0af9..64bea35f42 100644 --- a/packages/util/package.json +++ b/packages/util/package.json @@ -12,9 +12,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix", diff --git a/packages/web-components/package.json b/packages/web-components/package.json index c161717818..c7b3a34686 100644 --- a/packages/web-components/package.json +++ b/packages/web-components/package.json @@ -19,9 +19,9 @@ "clean": "tsc --build --clean", "build": "tsc --build --verbose tsconfig.json", "build:cjs": "npx vite --config vite.cjs.config.ts build", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/protocol/dev/package.json b/protocol/dev/package.json index 33129576c9..986d54872c 100644 --- a/protocol/dev/package.json +++ b/protocol/dev/package.json @@ -13,9 +13,9 @@ "build": "tsc", "cli": "f() { tsx src/cli.ts -- -- $@ ;}; f", "clean": "tsc --build --clean", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", + "eslint": "npx eslint . --cache --cache-location ../../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore --quiet", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix" diff --git a/provider-gui/package.json b/provider-gui/package.json index 75973273f5..c72495d737 100644 --- a/provider-gui/package.json +++ b/provider-gui/package.json @@ -12,9 +12,9 @@ "build": "next build", "clean": "rm -rf .next", "start": "next start", - "eslint": "npx eslint . --no-error-on-unmatched-pattern --ignore-path ../.eslintignore", + "eslint": "npx eslint . --cache --cache-location ../node_modules/.cache/eslint/.eslintcache --no-error-on-unmatched-pattern --ignore-path ../.eslintignore", "eslint:fix": "npm run eslint -- --fix", - "prettier": "npx prettier . --check --no-error-on-unmatched-pattern --ignore-path ../.eslintignore", + "prettier": "npx prettier . --cache --cache-location ../node_modules/.cache/prettier/.prettiercache --check --no-error-on-unmatched-pattern --ignore-path ../.eslintignore", "prettier:fix": "npm run prettier -- --write", "lint": "npm run eslint && npm run prettier", "lint:fix": "npm run eslint:fix && npm run prettier:fix"