feat: update packages and prettier

This commit is contained in:
Björn Meyer 2023-10-24 09:53:53 +02:00
parent bf4b09ec35
commit cab413a1f8
4 changed files with 556 additions and 375 deletions

View File

@ -91,9 +91,8 @@ export async function getFirstSeoUrlElement(
export async function getFirstProduct(productId: string): Promise<ExtendedProduct | undefined> {
const productCriteria = getDefaultProductCriteria(productId);
const listing: ExtendedProductListingResult | undefined = await requestProductsCollection(
productCriteria
);
const listing: ExtendedProductListingResult | undefined =
await requestProductsCollection(productCriteria);
if (listing && listing.elements && listing.elements.length > 0 && listing.elements[0]) {
return listing.elements[0];
}

View File

@ -19,33 +19,33 @@
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@shopware/api-client": "0.0.0-canary-20230904132316",
"clsx": "^2.0.0",
"next": "13.4.13-canary.15",
"next": "13.5.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-paginate": "^8.2.0"
},
"devDependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "20.4.4",
"@types/react": "18.2.16",
"@types/react-dom": "18.2.7",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "20.8.4",
"@types/react": "18.2.10",
"@types/react-dom": "18.2.10",
"@vercel/git-hooks": "^1.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-config-next": "^13.4.12",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unicorn": "^48.0.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.27",
"prettier": "3.0.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"lint-staged": "^14.0.1",
"postcss": "^8.4.31",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"tailwindcss": "^3.3.3",
"typescript": "5.1.6"
"typescript": "5.2.2"
}
}

889
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,9 @@
/** @type {import('prettier').Config} */
module.exports = {
singleQuote: true,
arrowParens: 'always',
trailingComma: 'none',
printWidth: 100,
tabWidth: 2,
// pnpm doesn't support plugin autoloading
// https://github.com/tailwindlabs/prettier-plugin-tailwindcss#installation
plugins: [require('prettier-plugin-tailwindcss')]
plugins: ['prettier-plugin-tailwindcss']
};