fix: deploy issues
Some checks failed
Build & Deploy / 🔍 Prepare Environment (push) Successful in 32s
Build & Deploy / 🏗️ Build (push) Failing after 2m35s
Build & Deploy / 🧪 QA (push) Successful in 3m42s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / ⚡ PageSpeed (push) Has been skipped
Build & Deploy / 🔔 Notifications (push) Successful in 2s
Some checks failed
Build & Deploy / 🔍 Prepare Environment (push) Successful in 32s
Build & Deploy / 🏗️ Build (push) Failing after 2m35s
Build & Deploy / 🧪 QA (push) Successful in 3m42s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / ⚡ PageSpeed (push) Has been skipped
Build & Deploy / 🔔 Notifications (push) Successful in 2s
This commit is contained in:
@@ -69,7 +69,7 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/eslintrc": "^3.3.3",
|
"@eslint/eslintrc": "^3.3.3",
|
||||||
"@eslint/js": "^10.0.1",
|
"@eslint/js": "^10.0.0",
|
||||||
"@lhci/cli": "^0.15.1",
|
"@lhci/cli": "^0.15.1",
|
||||||
"@mintel/cli": "^1.1.13",
|
"@mintel/cli": "^1.1.13",
|
||||||
"@mintel/eslint-config": "^1.1.13",
|
"@mintel/eslint-config": "^1.1.13",
|
||||||
@@ -84,7 +84,7 @@
|
|||||||
"@types/qrcode": "^1.5.6",
|
"@types/qrcode": "^1.5.6",
|
||||||
"autoprefixer": "^10.4.20",
|
"autoprefixer": "^10.4.20",
|
||||||
"cheerio": "^1.1.2",
|
"cheerio": "^1.1.2",
|
||||||
"eslint": "9.39.2",
|
"eslint": "10.0.0",
|
||||||
"eslint-plugin-react": "^7.37.5",
|
"eslint-plugin-react": "^7.37.5",
|
||||||
"eslint-plugin-react-hooks": "^7.0.1",
|
"eslint-plugin-react-hooks": "^7.0.1",
|
||||||
"postcss": "^8.4.49",
|
"postcss": "^8.4.49",
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import nextPlugin from "@next/eslint-plugin-next";
|
|||||||
import reactPlugin from "eslint-plugin-react";
|
import reactPlugin from "eslint-plugin-react";
|
||||||
import hooksPlugin from "eslint-plugin-react-hooks";
|
import hooksPlugin from "eslint-plugin-react-hooks";
|
||||||
import { FlatCompat } from "@eslint/eslintrc";
|
import { FlatCompat } from "@eslint/eslintrc";
|
||||||
|
import { fixupPluginRules } from "@eslint/compat";
|
||||||
import { dirname } from "path";
|
import { dirname } from "path";
|
||||||
import { fileURLToPath } from "url";
|
import { fileURLToPath } from "url";
|
||||||
|
|
||||||
@@ -30,9 +31,9 @@ export default tseslint.config(
|
|||||||
{
|
{
|
||||||
files: ["apps/web/**/*.{js,jsx,ts,tsx}"],
|
files: ["apps/web/**/*.{js,jsx,ts,tsx}"],
|
||||||
plugins: {
|
plugins: {
|
||||||
react: reactPlugin,
|
react: fixupPluginRules(reactPlugin),
|
||||||
"react-hooks": hooksPlugin,
|
"react-hooks": fixupPluginRules(hooksPlugin),
|
||||||
"@next/next": nextPlugin,
|
"@next/next": fixupPluginRules(nextPlugin),
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
...reactPlugin.configs.recommended.rules,
|
...reactPlugin.configs.recommended.rules,
|
||||||
@@ -51,7 +52,7 @@ export default tseslint.config(
|
|||||||
{
|
{
|
||||||
// Global overrides to keep the linter from blocking commits due to legacy debt
|
// Global overrides to keep the linter from blocking commits due to legacy debt
|
||||||
plugins: {
|
plugins: {
|
||||||
react: reactPlugin,
|
react: fixupPluginRules(reactPlugin),
|
||||||
"typescript-eslint": tseslint.plugin,
|
"typescript-eslint": tseslint.plugin,
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
|
|||||||
13
package.json
13
package.json
@@ -11,7 +11,7 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/eslintrc": "^3.3.3",
|
"@eslint/eslintrc": "^3.3.3",
|
||||||
"@eslint/js": "^10.0.1",
|
"@eslint/js": "^10.0.0",
|
||||||
"@mintel/cli": "^1.1.13",
|
"@mintel/cli": "^1.1.13",
|
||||||
"@mintel/eslint-config": "^1.1.13",
|
"@mintel/eslint-config": "^1.1.13",
|
||||||
"@mintel/husky-config": "^1.1.13",
|
"@mintel/husky-config": "^1.1.13",
|
||||||
@@ -19,12 +19,21 @@
|
|||||||
"@mintel/next-utils": "^1.1.13",
|
"@mintel/next-utils": "^1.1.13",
|
||||||
"@mintel/tsconfig": "^1.1.13",
|
"@mintel/tsconfig": "^1.1.13",
|
||||||
"@next/eslint-plugin-next": "^16.1.6",
|
"@next/eslint-plugin-next": "^16.1.6",
|
||||||
"eslint": "9.39.2",
|
"eslint": "10.0.0",
|
||||||
"eslint-plugin-react": "^7.37.5",
|
"eslint-plugin-react": "^7.37.5",
|
||||||
"eslint-plugin-react-hooks": "^7.0.1",
|
"eslint-plugin-react-hooks": "^7.0.1",
|
||||||
"husky": "^9.1.7",
|
"husky": "^9.1.7",
|
||||||
"lint-staged": "^16.2.7",
|
"lint-staged": "^16.2.7",
|
||||||
"prettier": "^3.8.1",
|
"prettier": "^3.8.1",
|
||||||
"typescript-eslint": "^8.54.0"
|
"typescript-eslint": "^8.54.0"
|
||||||
|
},
|
||||||
|
"pnpm": {
|
||||||
|
"overrides": {
|
||||||
|
"@sentry/nextjs": "10.38.0",
|
||||||
|
"eslint": "10.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@eslint/compat": "^2.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
1306
pnpm-lock.yaml
generated
1306
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user