From 627f0b4ea03731e168d3fb17565d3a6279ed1350 Mon Sep 17 00:00:00 2001 From: Elena Kim Date: Mon, 20 Nov 2023 12:26:42 +0100 Subject: [PATCH 1/6] Fixes for windows installation - escape spaces in command line with double quotes - support glob pattern in `rimraf` (disabled for Windows by default) - replace back slashes with forward slashes when POSIX-style path is implied --- .changeset/silent-toes-hope.md | 7 ++ examples/magento-graphcms/package.json | 6 +- packages/cli/src/bin/codegen.ts | 2 +- .../src/interceptors/findPlugins.ts | 28 +++--- .../src/interceptors/generateInterceptors.ts | 92 ++++++++++--------- .../src/interceptors/writeInterceptors.ts | 2 +- 6 files changed, 76 insertions(+), 61 deletions(-) create mode 100644 .changeset/silent-toes-hope.md diff --git a/.changeset/silent-toes-hope.md b/.changeset/silent-toes-hope.md new file mode 100644 index 00000000000..906ccb4f39d --- /dev/null +++ b/.changeset/silent-toes-hope.md @@ -0,0 +1,7 @@ +--- +'@graphcommerce/magento-graphcms': patch +'@graphcommerce/next-config': patch +'@graphcommerce/cli': patch +--- + +Fixes for Windows installation diff --git a/examples/magento-graphcms/package.json b/examples/magento-graphcms/package.json index 8d9d880d07a..e2b48cca55e 100644 --- a/examples/magento-graphcms/package.json +++ b/examples/magento-graphcms/package.json @@ -9,14 +9,14 @@ "node": "16.x.x||18.x.x||20.x.x" }, "scripts": { - "dev": "concurrently -k -n codegen,next 'graphql-codegen -w' 'next dev'", + "dev": "concurrently -k -n codegen,next \"graphql-codegen -w\" \"next dev\"", "codegen": "graphcommerce codegen-config && mesh build && graphql-codegen", "build": "graphcommerce codegen-config && mesh build && graphql-codegen && next build && next-sitemap", "start": "next start", "tsc:lint": "tsc --noEmit -p .", "lingui": "cross-env NODE_ENV=development lingui extract --clean", - "postinstall": "is-monorepo '[pkgrun] postinstall' '[pkgrun] patch-package'", - "create-patch": "patch-package --exclude 'package.json$|gql.ts$|interceptor.tsx$'" + "postinstall": "is-monorepo \"[pkgrun] postinstall\" \"[pkgrun] patch-package\"", + "create-patch": "patch-package --exclude \"package.json$|gql.ts$|interceptor.tsx$\"" }, "dependencies": { "@apollo/client": "~3.8.7", diff --git a/packages/cli/src/bin/codegen.ts b/packages/cli/src/bin/codegen.ts index cbbbeb6afe3..2d3d560f612 100755 --- a/packages/cli/src/bin/codegen.ts +++ b/packages/cli/src/bin/codegen.ts @@ -71,7 +71,7 @@ async function main() { }) const isWatching = process.argv.includes('--watch') || process.argv.includes('-w') - if (!isWatching && extension) await rimraf(path.join(root, `**/*${extension}`)) + if (!isWatching && extension) await rimraf(path.join(root, `**/*${extension}`), { glob: true }) // - Prepend the all targets with ../../ if we're running in a monorepo setup. // - Append all the Graphcommerce packages to the configuration diff --git a/packagesDev/next-config/src/interceptors/findPlugins.ts b/packagesDev/next-config/src/interceptors/findPlugins.ts index eace59cde24..f158ae4432f 100644 --- a/packagesDev/next-config/src/interceptors/findPlugins.ts +++ b/packagesDev/next-config/src/interceptors/findPlugins.ts @@ -64,7 +64,10 @@ export function findPlugins(config: GraphCommerceConfig, cwd: string = process.c if (!result) return const pluginConfig = { - plugin: file.replace(dependency, path).replace('.tsx', '').replace('.ts', ''), + plugin: file + .replace(dependency.replace(/\\/g, '/'), path) + .replace('.tsx', '') + .replace('.ts', ''), ...result, enabled: !result.ifConfig || Boolean(get(config, result.ifConfig)), } @@ -93,16 +96,19 @@ export function findPlugins(config: GraphCommerceConfig, cwd: string = process.c }) if (process.env.NODE_ENV === 'development' && debug) { - const byExported = plugins.reduce((acc, plugin) => { - const componentStr = isReactPluginConfig(plugin) ? plugin.component : '' - const funcStr = isMethodPluginConfig(plugin) ? plugin.func : '' - const key = `🔌 ${chalk.greenBright( - `Plugins loaded for ${plugin.exported}#${componentStr}${funcStr}`, - )}` - if (!acc[key]) acc[key] = [] - acc[key].push(plugin) - return acc - }, {} as Record[]>) + const byExported = plugins.reduce( + (acc, plugin) => { + const componentStr = isReactPluginConfig(plugin) ? plugin.component : '' + const funcStr = isMethodPluginConfig(plugin) ? plugin.func : '' + const key = `🔌 ${chalk.greenBright( + `Plugins loaded for ${plugin.exported}#${componentStr}${funcStr}`, + )}` + if (!acc[key]) acc[key] = [] + acc[key].push(plugin) + return acc + }, + {} as Record[]>, + ) const toLog: string[] = [] Object.entries(byExported).forEach(([key, p]) => { diff --git a/packagesDev/next-config/src/interceptors/generateInterceptors.ts b/packagesDev/next-config/src/interceptors/generateInterceptors.ts index 6100026dd40..ed9459040f3 100644 --- a/packagesDev/next-config/src/interceptors/generateInterceptors.ts +++ b/packagesDev/next-config/src/interceptors/generateInterceptors.ts @@ -200,51 +200,53 @@ export function generateInterceptors( config?: GraphCommerceDebugConfig | null | undefined, ): GenerateInterceptorsReturn { // todo: Do not use reduce as we're passing the accumulator to the next iteration - const byExportedComponent = moveRelativeDown(plugins).reduce((acc, plug) => { - const { exported, plugin } = plug - if (!isPluginConfig(plug) || !plug.enabled) return acc - - const resolved = resolve(exported) - - let pluginPathFromResolved = plugin - if (plugin.startsWith('.')) { - const resolvedPlugin = resolve(plugin) - pluginPathFromResolved = path.relative( - resolved.fromRoot.split('/').slice(0, -1).join('/'), - resolvedPlugin.fromRoot, - ) - } - - if (!acc[resolved.fromRoot]) - acc[resolved.fromRoot] = { - ...resolved, - target: `${resolved.fromRoot}.interceptor`, - components: {}, - funcs: {}, - } as Interceptor - - if (isReactPluginConfig(plug)) { - const { component } = plug - if (!acc[resolved.fromRoot].components[component]) - acc[resolved.fromRoot].components[component] = [] - - acc[resolved.fromRoot].components[component].push({ - ...plug, - plugin: pluginPathFromResolved, - }) - } - if (isMethodPluginConfig(plug)) { - const { func } = plug - if (!acc[resolved.fromRoot].funcs[func]) acc[resolved.fromRoot].funcs[func] = [] - - acc[resolved.fromRoot].funcs[func].push({ - ...plug, - plugin: pluginPathFromResolved, - }) - } - - return acc - }, {} as Record) + const byExportedComponent = moveRelativeDown(plugins).reduce( + (acc, plug) => { + const { exported, plugin } = plug + if (!isPluginConfig(plug) || !plug.enabled) return acc + + const resolved = resolve(exported) + + let pluginPathFromResolved = plugin + if (plugin.startsWith('.')) { + const resolvedPlugin = resolve(plugin) + pluginPathFromResolved = path + .relative(resolved.fromRoot.split('/').slice(0, -1).join('/'), resolvedPlugin.fromRoot) + .replace(/\\/g, '/') + } + + if (!acc[resolved.fromRoot]) + acc[resolved.fromRoot] = { + ...resolved, + target: `${resolved.fromRoot}.interceptor`, + components: {}, + funcs: {}, + } as Interceptor + + if (isReactPluginConfig(plug)) { + const { component } = plug + if (!acc[resolved.fromRoot].components[component]) + acc[resolved.fromRoot].components[component] = [] + + acc[resolved.fromRoot].components[component].push({ + ...plug, + plugin: pluginPathFromResolved, + }) + } + if (isMethodPluginConfig(plug)) { + const { func } = plug + if (!acc[resolved.fromRoot].funcs[func]) acc[resolved.fromRoot].funcs[func] = [] + + acc[resolved.fromRoot].funcs[func].push({ + ...plug, + plugin: pluginPathFromResolved, + }) + } + + return acc + }, + {} as Record, + ) return Object.fromEntries( Object.entries(byExportedComponent).map(([target, interceptor]) => [ diff --git a/packagesDev/next-config/src/interceptors/writeInterceptors.ts b/packagesDev/next-config/src/interceptors/writeInterceptors.ts index 94f488e217c..be616db25ce 100644 --- a/packagesDev/next-config/src/interceptors/writeInterceptors.ts +++ b/packagesDev/next-config/src/interceptors/writeInterceptors.ts @@ -17,7 +17,7 @@ export function writeInterceptors( }) Object.entries(interceptors).forEach(([, plugin]) => { - const relativeFile = `${plugin.fromRoot}.interceptor.tsx` + const relativeFile = `${plugin.fromRoot.replace(/\\/g, '/')}.interceptor.tsx` if (existing.includes(relativeFile)) { delete existing[existing.indexOf(relativeFile)] From ecb61e223b35bc4e2e29ff526171ab2ab024acb9 Mon Sep 17 00:00:00 2001 From: Elena Kim Date: Wed, 22 Nov 2023 09:17:03 +0100 Subject: [PATCH 2/6] Fixup: changes for yarn.lock --- yarn.lock | 1268 ++++++++++++++++++++++++++--------------------------- 1 file changed, 634 insertions(+), 634 deletions(-) diff --git a/yarn.lock b/yarn.lock index 8211991c960..39c228a9838 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2519,14 +2519,14 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/address-fields-nl@workspace:packages/address-fields-nl" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2544,17 +2544,17 @@ __metadata: algoliasearch: "npm:^4.20.0" react-instantsearch-hooks-web: "npm:^6.47.3" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-search": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-config": ^* - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-search": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-config": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2579,7 +2579,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/cli@npm:7.1.0-canary.44, @graphcommerce/cli@workspace:packages/cli": +"@graphcommerce/cli@npm:7.1.0-canary.45, @graphcommerce/cli@workspace:packages/cli": version: 0.0.0-use.local resolution: "@graphcommerce/cli@workspace:packages/cli" dependencies: @@ -2598,11 +2598,11 @@ __metadata: rimraf: "npm:^5.0.5" tslib: "npm:^2.6.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/hygraph-cli": ^7 - "@graphcommerce/next-config": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/hygraph-cli": ^7.1.0-canary.45 + "@graphcommerce/next-config": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 graphql: ^16.7.1 react: ^18.2.0 typescript: 5.2.2 @@ -2618,18 +2618,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/demo-magento-graphcommerce@npm:7.1.0-canary.44, @graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce": +"@graphcommerce/demo-magento-graphcommerce@npm:7.1.0-canary.45, @graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce": version: 0.0.0-use.local resolution: "@graphcommerce/demo-magento-graphcommerce@workspace:packages/demo-magento-graphcommerce" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-scroller": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-product-configurable": ^7 - "@graphcommerce/magento-recently-viewed-products": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-scroller": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-product-configurable": ^7.1.0-canary.45 + "@graphcommerce/magento-recently-viewed-products": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@mui/material": ^5.10.16 framer-motion: ^10.0.0 next: ^14 @@ -2642,20 +2642,20 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/docs@workspace:docs" peerDependencies: - "@graphcommerce/prettier-config-pwa": ^7 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 languageName: unknown linkType: soft -"@graphcommerce/ecommerce-ui@npm:7.1.0-canary.44, @graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui": +"@graphcommerce/ecommerce-ui@npm:7.1.0-canary.45, @graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui": version: 0.0.0-use.local resolution: "@graphcommerce/ecommerce-ui@workspace:packages/ecommerce-ui" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -2667,11 +2667,11 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/eslint-config-pwa@npm:7.1.0-canary.44, @graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config": +"@graphcommerce/eslint-config-pwa@npm:7.1.0-canary.45, @graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config": version: 0.0.0-use.local resolution: "@graphcommerce/eslint-config-pwa@workspace:packagesDev/eslint-config" dependencies: - "@graphcommerce/typescript-config-pwa": "npm:7.1.0-canary.44" + "@graphcommerce/typescript-config-pwa": "npm:7.1.0-canary.45" "@next/eslint-plugin-next": "npm:14.0.2" "@typescript-eslint/eslint-plugin": "npm:^6.10.0" "@typescript-eslint/parser": "npm:^6.10.0" @@ -2691,9 +2691,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/framer-next-pages-example@workspace:packages/framer-next-pages/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:7.1.0-canary.44" - "@graphcommerce/prettier-config-pwa": "npm:7.1.0-canary.44" - "@graphcommerce/typescript-config-pwa": "npm:7.1.0-canary.44" + "@graphcommerce/eslint-config-pwa": "npm:7.1.0-canary.45" + "@graphcommerce/prettier-config-pwa": "npm:7.1.0-canary.45" + "@graphcommerce/typescript-config-pwa": "npm:7.1.0-canary.45" "@lingui/cli": "npm:4.5.0" "@lingui/core": "npm:4.5.0" "@lingui/macro": "npm:4.5.0" @@ -2727,14 +2727,14 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-next-pages@npm:7.1.0-canary.44, @graphcommerce/framer-next-pages@workspace:packages/framer-next-pages": +"@graphcommerce/framer-next-pages@npm:7.1.0-canary.45, @graphcommerce/framer-next-pages@workspace:packages/framer-next-pages": version: 0.0.0-use.local resolution: "@graphcommerce/framer-next-pages@workspace:packages/framer-next-pages" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-utils": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-utils": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 framer-motion: ^10.0.0 next: ^14 react: ^18.2.0 @@ -2746,9 +2746,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/framer-scroller-example@workspace:packages/framer-scroller/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:7.1.0-canary.44" - "@graphcommerce/prettier-config-pwa": "npm:7.1.0-canary.44" - "@graphcommerce/typescript-config-pwa": "npm:7.1.0-canary.44" + "@graphcommerce/eslint-config-pwa": "npm:7.1.0-canary.45" + "@graphcommerce/prettier-config-pwa": "npm:7.1.0-canary.45" + "@graphcommerce/typescript-config-pwa": "npm:7.1.0-canary.45" "@lingui/cli": "npm:4.5.0" "@lingui/core": "npm:4.5.0" "@lingui/macro": "npm:4.5.0" @@ -2782,17 +2782,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-scroller@npm:7.1.0-canary.44, @graphcommerce/framer-scroller@workspace:packages/framer-scroller": +"@graphcommerce/framer-scroller@npm:7.1.0-canary.45, @graphcommerce/framer-scroller@workspace:packages/framer-scroller": version: 0.0.0-use.local resolution: "@graphcommerce/framer-scroller@workspace:packages/framer-scroller" dependencies: popmotion: "npm:11.0.5" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-utils": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-utils": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/react": ^4.2.1 "@mui/material": ^5.10.16 @@ -2803,37 +2803,37 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/framer-utils@npm:7.1.0-canary.44, @graphcommerce/framer-utils@workspace:packages/framer-utils": +"@graphcommerce/framer-utils@npm:7.1.0-canary.45, @graphcommerce/framer-utils@workspace:packages/framer-utils": version: 0.0.0-use.local resolution: "@graphcommerce/framer-utils@workspace:packages/framer-utils" dependencies: framesync: "npm:^6.1.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 framer-motion: ^10.0.0 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/googleanalytics@npm:7.1.0-canary.44, @graphcommerce/googleanalytics@workspace:packages/googleanalytics": +"@graphcommerce/googleanalytics@npm:7.1.0-canary.45, @graphcommerce/googleanalytics@workspace:packages/googleanalytics": version: 0.0.0-use.local resolution: "@graphcommerce/googleanalytics@workspace:packages/googleanalytics" dependencies: "@types/gtag.js": "npm:^0.0.18" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-payment-method": ^7 - "@graphcommerce/magento-cart-shipping-method": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/next-config": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-payment-method": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-shipping-method": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/next-config": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@mui/material": ^5.10.16 next: ^14 react: ^18.2.0 @@ -2841,17 +2841,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/googlerecaptcha@npm:7.1.0-canary.44, @graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha": +"@graphcommerce/googlerecaptcha@npm:7.1.0-canary.45, @graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha": version: 0.0.0-use.local resolution: "@graphcommerce/googlerecaptcha@workspace:packages/googlerecaptcha" dependencies: "@types/grecaptcha": "npm:^3.0.7" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@mui/material": ^5.10.16 next: ^14 react: ^18.2.0 @@ -2859,33 +2859,33 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/googletagmanager@npm:7.1.0-canary.44, @graphcommerce/googletagmanager@workspace:packages/googletagmanager": +"@graphcommerce/googletagmanager@npm:7.1.0-canary.45, @graphcommerce/googletagmanager@workspace:packages/googletagmanager": version: 0.0.0-use.local resolution: "@graphcommerce/googletagmanager@workspace:packages/googletagmanager" dependencies: "@types/gapi.client.tagmanager": "npm:^2.0.4" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 next: ^14 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/graphcms-ui@npm:7.1.0-canary.44, @graphcommerce/graphcms-ui@workspace:packages/hygraph-ui": +"@graphcommerce/graphcms-ui@npm:7.1.0-canary.45, @graphcommerce/graphcms-ui@workspace:packages/hygraph-ui": version: 0.0.0-use.local resolution: "@graphcommerce/graphcms-ui@workspace:packages/hygraph-ui" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@mui/material": ^5.10.16 next: ^14 react: ^18.2.0 @@ -2904,14 +2904,14 @@ __metadata: "@types/parse-filepath": "npm:^1.0.2" parse-filepath: "npm:^1.0.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-codegen-near-operation-file@npm:7.1.0-canary.44, @graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file": +"@graphcommerce/graphql-codegen-near-operation-file@npm:7.1.0-canary.45, @graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-codegen-near-operation-file@workspace:packagesDev/graphql-codegen-near-operation-file" dependencies: @@ -2922,14 +2922,14 @@ __metadata: "@types/parse-filepath": "npm:^1.0.2" parse-filepath: "npm:^1.0.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-codegen-relay-optimizer-plugin@npm:7.1.0-canary.44, @graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin": +"@graphcommerce/graphql-codegen-relay-optimizer-plugin@npm:7.1.0-canary.45, @graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-codegen-relay-optimizer-plugin@workspace:packagesDev/graphql-codegen-relay-optimizer-plugin" dependencies: @@ -2943,13 +2943,13 @@ __metadata: ts-jest: "npm:29.1.1" typescript: "npm:5.2.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/prettier-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql-mesh@npm:7.1.0-canary.44, @graphcommerce/graphql-mesh@workspace:packages/graphql-mesh": +"@graphcommerce/graphql-mesh@npm:7.1.0-canary.45, @graphcommerce/graphql-mesh@workspace:packages/graphql-mesh": version: 0.0.0-use.local resolution: "@graphcommerce/graphql-mesh@workspace:packages/graphql-mesh" dependencies: @@ -2971,19 +2971,19 @@ __metadata: typescript: "npm:5.2.2" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/graphql@npm:7.1.0-canary.44, @graphcommerce/graphql@workspace:packages/graphql": +"@graphcommerce/graphql@npm:7.1.0-canary.45, @graphcommerce/graphql@workspace:packages/graphql": version: 0.0.0-use.local resolution: "@graphcommerce/graphql@workspace:packages/graphql" dependencies: - "@graphcommerce/graphql-codegen-near-operation-file": "npm:7.1.0-canary.44" - "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "npm:7.1.0-canary.44" + "@graphcommerce/graphql-codegen-near-operation-file": "npm:7.1.0-canary.45" + "@graphcommerce/graphql-codegen-relay-optimizer-plugin": "npm:7.1.0-canary.45" "@graphql-codegen/add": "npm:5.0.0" "@graphql-codegen/fragment-matcher": "npm:5.0.0" "@graphql-codegen/introspection": "npm:4.0.0" @@ -2996,16 +2996,16 @@ __metadata: apollo3-cache-persist: "npm:^0.14.1" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 graphql: ^16.7.1 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/hygraph-cli@npm:7.1.0-canary.44, @graphcommerce/hygraph-cli@workspace:packages/hygraph-cli": +"@graphcommerce/hygraph-cli@npm:7.1.0-canary.45, @graphcommerce/hygraph-cli@workspace:packages/hygraph-cli": version: 0.0.0-use.local resolution: "@graphcommerce/hygraph-cli@workspace:packages/hygraph-cli" dependencies: @@ -3017,26 +3017,26 @@ __metadata: typescript: "npm:5.2.2" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/next-config": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/next-config": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 dotenv: ^16.1.4 graphql: ^16.7.1 languageName: unknown linkType: soft -"@graphcommerce/hygraph-dynamic-rows@npm:7.1.0-canary.44, @graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows": +"@graphcommerce/hygraph-dynamic-rows@npm:7.1.0-canary.45, @graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows": version: 0.0.0-use.local resolution: "@graphcommerce/hygraph-dynamic-rows@workspace:packages/hygraph-dynamic-rows" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphcms-ui": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphcms-ui": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@mui/material": ^5.10.16 next: ^14 react: ^18.2.0 @@ -3048,9 +3048,9 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/image-example@workspace:packages/image/example" dependencies: - "@graphcommerce/eslint-config-pwa": "npm:7.1.0-canary.44" - "@graphcommerce/prettier-config-pwa": "npm:7.1.0-canary.44" - "@graphcommerce/typescript-config-pwa": "npm:7.1.0-canary.44" + "@graphcommerce/eslint-config-pwa": "npm:7.1.0-canary.45" + "@graphcommerce/prettier-config-pwa": "npm:7.1.0-canary.45" + "@graphcommerce/typescript-config-pwa": "npm:7.1.0-canary.45" "@lingui/cli": "npm:4.5.0" "@lingui/core": "npm:4.5.0" "@lingui/macro": "npm:4.5.0" @@ -3084,14 +3084,14 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/image@npm:7.1.0-canary.44, @graphcommerce/image@workspace:packages/image": +"@graphcommerce/image@npm:7.1.0-canary.45, @graphcommerce/image@workspace:packages/image": version: 0.0.0-use.local resolution: "@graphcommerce/image@workspace:packages/image" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-utils": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-utils": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@mui/material": ^5.10.16 next: ^14 react: ^18.2.0 @@ -3103,24 +3103,24 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/lighthouse@workspace:packages/lighthouse" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 next: ^14 languageName: unknown linkType: soft -"@graphcommerce/lingui-next@npm:7.1.0-canary.44, @graphcommerce/lingui-next@workspace:packages/lingui-next": +"@graphcommerce/lingui-next@npm:7.1.0-canary.45, @graphcommerce/lingui-next@workspace:packages/lingui-next": version: 0.0.0-use.local resolution: "@graphcommerce/lingui-next@workspace:packages/lingui-next" dependencies: "@lingui/conf": "npm:^4.5.0" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/next-config": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/next-config": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3130,21 +3130,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-billing-address@npm:7.1.0-canary.44, @graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address": +"@graphcommerce/magento-cart-billing-address@npm:7.1.0-canary.45, @graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-billing-address@workspace:packages/magento-cart-billing-address" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-next-pages": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-next-pages": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3156,22 +3156,22 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-checkout@npm:7.1.0-canary.44, @graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout": +"@graphcommerce/magento-cart-checkout@npm:7.1.0-canary.45, @graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-checkout@workspace:packages/magento-cart-checkout" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-coupon": ^7 - "@graphcommerce/magento-cart-items": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-coupon": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-items": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3183,19 +3183,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-coupon@npm:7.1.0-canary.44, @graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon": +"@graphcommerce/magento-cart-coupon@npm:7.1.0-canary.45, @graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-coupon@workspace:packages/magento-cart-coupon" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3207,22 +3207,22 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-email@npm:7.1.0-canary.44, @graphcommerce/magento-cart-email@workspace:packages/magento-cart-email": +"@graphcommerce/magento-cart-email@npm:7.1.0-canary.45, @graphcommerce/magento-cart-email@workspace:packages/magento-cart-email": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-email@workspace:packages/magento-cart-email" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3234,21 +3234,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-items@npm:7.1.0-canary.44, @graphcommerce/magento-cart-items@workspace:packages/magento-cart-items": +"@graphcommerce/magento-cart-items@npm:7.1.0-canary.45, @graphcommerce/magento-cart-items@workspace:packages/magento-cart-items": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-items@workspace:packages/magento-cart-items" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3260,21 +3260,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-payment-method@npm:7.1.0-canary.44, @graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method": +"@graphcommerce/magento-cart-payment-method@npm:7.1.0-canary.45, @graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-payment-method@workspace:packages/magento-cart-payment-method" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-scroller": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-shipping-address": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-scroller": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-shipping-address": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3290,18 +3290,18 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-pickup@workspace:packages/magento-cart-pickup" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-shipping-method": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-shipping-method": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3313,20 +3313,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-shipping-address@npm:7.1.0-canary.44, @graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address": +"@graphcommerce/magento-cart-shipping-address@npm:7.1.0-canary.45, @graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-shipping-address@workspace:packages/magento-cart-shipping-address" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3338,21 +3338,21 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart-shipping-method@npm:7.1.0-canary.44, @graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method": +"@graphcommerce/magento-cart-shipping-method@npm:7.1.0-canary.45, @graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart-shipping-method@workspace:packages/magento-cart-shipping-method" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-scroller": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-shipping-address": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-scroller": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-shipping-address": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3364,24 +3364,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cart@npm:7.1.0-canary.44, @graphcommerce/magento-cart@workspace:packages/magento-cart": +"@graphcommerce/magento-cart@npm:7.1.0-canary.45, @graphcommerce/magento-cart@workspace:packages/magento-cart": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cart@workspace:packages/magento-cart" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-next-pages": ^7 - "@graphcommerce/framer-scroller": ^7 - "@graphcommerce/framer-utils": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/magento-graphql": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-next-pages": ^7.1.0-canary.45 + "@graphcommerce/framer-scroller": ^7.1.0-canary.45 + "@graphcommerce/framer-utils": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/magento-graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3393,19 +3393,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-category@npm:7.1.0-canary.44, @graphcommerce/magento-category@workspace:packages/magento-category": +"@graphcommerce/magento-category@npm:7.1.0-canary.45, @graphcommerce/magento-category@workspace:packages/magento-category": version: 0.0.0-use.local resolution: "@graphcommerce/magento-category@workspace:packages/magento-category" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-scroller": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-scroller": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3416,15 +3416,15 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-cms@npm:7.1.0-canary.44, @graphcommerce/magento-cms@workspace:packages/magento-cms": +"@graphcommerce/magento-cms@npm:7.1.0-canary.45, @graphcommerce/magento-cms@workspace:packages/magento-cms": version: 0.0.0-use.local resolution: "@graphcommerce/magento-cms@workspace:packages/magento-cms" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3435,20 +3435,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-compare@npm:7.1.0-canary.44, @graphcommerce/magento-compare@workspace:packages/magento-compare": +"@graphcommerce/magento-compare@npm:7.1.0-canary.45, @graphcommerce/magento-compare@workspace:packages/magento-compare": version: 0.0.0-use.local resolution: "@graphcommerce/magento-compare@workspace:packages/magento-compare" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-next-pages": ^7 - "@graphcommerce/framer-utils": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-next-pages": ^7.1.0-canary.45 + "@graphcommerce/framer-utils": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3465,10 +3465,10 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer-account@workspace:packages/magento-customer-account" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 languageName: unknown linkType: soft @@ -3476,16 +3476,16 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer-order@workspace:packages/magento-customer-order" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/magento-graphql": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/magento-graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3497,22 +3497,22 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-customer@npm:7.1.0-canary.44, @graphcommerce/magento-customer@workspace:packages/magento-customer": +"@graphcommerce/magento-customer@npm:7.1.0-canary.45, @graphcommerce/magento-customer@workspace:packages/magento-customer": version: 0.0.0-use.local resolution: "@graphcommerce/magento-customer@workspace:packages/magento-customer" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-utils": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-graphql": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-utils": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3531,56 +3531,56 @@ __metadata: dependencies: "@apollo/client": "npm:~3.8.7" "@ducanh2912/next-pwa": "npm:9.7.2" - "@graphcommerce/cli": "npm:7.1.0-canary.44" - "@graphcommerce/demo-magento-graphcommerce": "npm:7.1.0-canary.44" - "@graphcommerce/ecommerce-ui": "npm:7.1.0-canary.44" - "@graphcommerce/eslint-config-pwa": "npm:7.1.0-canary.44" - "@graphcommerce/framer-next-pages": "npm:7.1.0-canary.44" - "@graphcommerce/framer-scroller": "npm:7.1.0-canary.44" - "@graphcommerce/framer-utils": "npm:7.1.0-canary.44" - "@graphcommerce/googleanalytics": "npm:7.1.0-canary.44" - "@graphcommerce/googlerecaptcha": "npm:7.1.0-canary.44" - "@graphcommerce/googletagmanager": "npm:7.1.0-canary.44" - "@graphcommerce/graphcms-ui": "npm:7.1.0-canary.44" - "@graphcommerce/graphql": "npm:7.1.0-canary.44" - "@graphcommerce/graphql-mesh": "npm:7.1.0-canary.44" - "@graphcommerce/hygraph-cli": "npm:7.1.0-canary.44" - "@graphcommerce/hygraph-dynamic-rows": "npm:7.1.0-canary.44" - "@graphcommerce/image": "npm:7.1.0-canary.44" - "@graphcommerce/lingui-next": "npm:7.1.0-canary.44" - "@graphcommerce/magento-cart": "npm:7.1.0-canary.44" - "@graphcommerce/magento-cart-billing-address": "npm:7.1.0-canary.44" - "@graphcommerce/magento-cart-checkout": "npm:7.1.0-canary.44" - "@graphcommerce/magento-cart-coupon": "npm:7.1.0-canary.44" - "@graphcommerce/magento-cart-email": "npm:7.1.0-canary.44" - "@graphcommerce/magento-cart-items": "npm:7.1.0-canary.44" - "@graphcommerce/magento-cart-payment-method": "npm:7.1.0-canary.44" - "@graphcommerce/magento-cart-shipping-address": "npm:7.1.0-canary.44" - "@graphcommerce/magento-cart-shipping-method": "npm:7.1.0-canary.44" - "@graphcommerce/magento-category": "npm:7.1.0-canary.44" - "@graphcommerce/magento-cms": "npm:7.1.0-canary.44" - "@graphcommerce/magento-compare": "npm:7.1.0-canary.44" - "@graphcommerce/magento-customer": "npm:7.1.0-canary.44" - "@graphcommerce/magento-graphql": "npm:7.1.0-canary.44" - "@graphcommerce/magento-newsletter": "npm:7.1.0-canary.44" - "@graphcommerce/magento-payment-included": "npm:7.1.0-canary.44" - "@graphcommerce/magento-product": "npm:7.1.0-canary.44" - "@graphcommerce/magento-product-bundle": "npm:7.1.0-canary.44" - "@graphcommerce/magento-product-configurable": "npm:7.1.0-canary.44" - "@graphcommerce/magento-product-downloadable": "npm:7.1.0-canary.44" - "@graphcommerce/magento-product-grouped": "npm:7.1.0-canary.44" - "@graphcommerce/magento-product-simple": "npm:7.1.0-canary.44" - "@graphcommerce/magento-product-virtual": "npm:7.1.0-canary.44" - "@graphcommerce/magento-recently-viewed-products": "npm:7.1.0-canary.44" - "@graphcommerce/magento-review": "npm:7.1.0-canary.44" - "@graphcommerce/magento-search": "npm:7.1.0-canary.44" - "@graphcommerce/magento-store": "npm:7.1.0-canary.44" - "@graphcommerce/magento-wishlist": "npm:7.1.0-canary.44" - "@graphcommerce/next-config": "npm:7.1.0-canary.44" - "@graphcommerce/next-ui": "npm:7.1.0-canary.44" - "@graphcommerce/prettier-config-pwa": "npm:7.1.0-canary.44" - "@graphcommerce/react-hook-form": "npm:7.1.0-canary.44" - "@graphcommerce/typescript-config-pwa": "npm:7.1.0-canary.44" + "@graphcommerce/cli": "npm:7.1.0-canary.45" + "@graphcommerce/demo-magento-graphcommerce": "npm:7.1.0-canary.45" + "@graphcommerce/ecommerce-ui": "npm:7.1.0-canary.45" + "@graphcommerce/eslint-config-pwa": "npm:7.1.0-canary.45" + "@graphcommerce/framer-next-pages": "npm:7.1.0-canary.45" + "@graphcommerce/framer-scroller": "npm:7.1.0-canary.45" + "@graphcommerce/framer-utils": "npm:7.1.0-canary.45" + "@graphcommerce/googleanalytics": "npm:7.1.0-canary.45" + "@graphcommerce/googlerecaptcha": "npm:7.1.0-canary.45" + "@graphcommerce/googletagmanager": "npm:7.1.0-canary.45" + "@graphcommerce/graphcms-ui": "npm:7.1.0-canary.45" + "@graphcommerce/graphql": "npm:7.1.0-canary.45" + "@graphcommerce/graphql-mesh": "npm:7.1.0-canary.45" + "@graphcommerce/hygraph-cli": "npm:7.1.0-canary.45" + "@graphcommerce/hygraph-dynamic-rows": "npm:7.1.0-canary.45" + "@graphcommerce/image": "npm:7.1.0-canary.45" + "@graphcommerce/lingui-next": "npm:7.1.0-canary.45" + "@graphcommerce/magento-cart": "npm:7.1.0-canary.45" + "@graphcommerce/magento-cart-billing-address": "npm:7.1.0-canary.45" + "@graphcommerce/magento-cart-checkout": "npm:7.1.0-canary.45" + "@graphcommerce/magento-cart-coupon": "npm:7.1.0-canary.45" + "@graphcommerce/magento-cart-email": "npm:7.1.0-canary.45" + "@graphcommerce/magento-cart-items": "npm:7.1.0-canary.45" + "@graphcommerce/magento-cart-payment-method": "npm:7.1.0-canary.45" + "@graphcommerce/magento-cart-shipping-address": "npm:7.1.0-canary.45" + "@graphcommerce/magento-cart-shipping-method": "npm:7.1.0-canary.45" + "@graphcommerce/magento-category": "npm:7.1.0-canary.45" + "@graphcommerce/magento-cms": "npm:7.1.0-canary.45" + "@graphcommerce/magento-compare": "npm:7.1.0-canary.45" + "@graphcommerce/magento-customer": "npm:7.1.0-canary.45" + "@graphcommerce/magento-graphql": "npm:7.1.0-canary.45" + "@graphcommerce/magento-newsletter": "npm:7.1.0-canary.45" + "@graphcommerce/magento-payment-included": "npm:7.1.0-canary.45" + "@graphcommerce/magento-product": "npm:7.1.0-canary.45" + "@graphcommerce/magento-product-bundle": "npm:7.1.0-canary.45" + "@graphcommerce/magento-product-configurable": "npm:7.1.0-canary.45" + "@graphcommerce/magento-product-downloadable": "npm:7.1.0-canary.45" + "@graphcommerce/magento-product-grouped": "npm:7.1.0-canary.45" + "@graphcommerce/magento-product-simple": "npm:7.1.0-canary.45" + "@graphcommerce/magento-product-virtual": "npm:7.1.0-canary.45" + "@graphcommerce/magento-recently-viewed-products": "npm:7.1.0-canary.45" + "@graphcommerce/magento-review": "npm:7.1.0-canary.45" + "@graphcommerce/magento-search": "npm:7.1.0-canary.45" + "@graphcommerce/magento-store": "npm:7.1.0-canary.45" + "@graphcommerce/magento-wishlist": "npm:7.1.0-canary.45" + "@graphcommerce/next-config": "npm:7.1.0-canary.45" + "@graphcommerce/next-ui": "npm:7.1.0-canary.45" + "@graphcommerce/prettier-config-pwa": "npm:7.1.0-canary.45" + "@graphcommerce/react-hook-form": "npm:7.1.0-canary.45" + "@graphcommerce/typescript-config-pwa": "npm:7.1.0-canary.45" "@lingui/cli": "npm:4.5.0" "@lingui/core": "npm:4.5.0" "@lingui/macro": "npm:4.5.0" @@ -3616,33 +3616,33 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-graphql@npm:7.1.0-canary.44, @graphcommerce/magento-graphql@workspace:packages/magento-graphql": +"@graphcommerce/magento-graphql@npm:7.1.0-canary.45, @graphcommerce/magento-graphql@workspace:packages/magento-graphql": version: 0.0.0-use.local resolution: "@graphcommerce/magento-graphql@workspace:packages/magento-graphql" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 next: ^14 react: ^18.2.0 react-dom: ^18.2.0 languageName: unknown linkType: soft -"@graphcommerce/magento-newsletter@npm:7.1.0-canary.44, @graphcommerce/magento-newsletter@workspace:packages/magento-newsletter": +"@graphcommerce/magento-newsletter@npm:7.1.0-canary.45, @graphcommerce/magento-newsletter@workspace:packages/magento-newsletter": version: 0.0.0-use.local resolution: "@graphcommerce/magento-newsletter@workspace:packages/magento-newsletter" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3661,15 +3661,15 @@ __metadata: "@types/jsdom": "npm:^21.1.5" jsdom: "npm:^22.1.0" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/magento-category": ^7 - "@graphcommerce/magento-cms": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-category": ^7.1.0-canary.45 + "@graphcommerce/magento-cms": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3685,18 +3685,18 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-adyen@workspace:packages/magento-payment-adyen" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-payment-method": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-payment-method": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3714,19 +3714,19 @@ __metadata: "@types/braintree-web": "npm:^3.96.9" braintree-web: "npm:^3.97.3" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-payment-method": ^7 - "@graphcommerce/magento-cart-shipping-address": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-product-configurable": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-payment-method": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-shipping-address": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-product-configurable": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3738,23 +3738,23 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-payment-included@npm:7.1.0-canary.44, @graphcommerce/magento-payment-included@workspace:packages/magento-payment-included": +"@graphcommerce/magento-payment-included@npm:7.1.0-canary.45, @graphcommerce/magento-payment-included@workspace:packages/magento-payment-included": version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-included@workspace:packages/magento-payment-included" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-payment-method": ^7 - "@graphcommerce/magento-cart-shipping-address": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-product-configurable": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-payment-method": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-shipping-address": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-product-configurable": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3770,14 +3770,14 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-klarna@workspace:packages/magento-payment-klarna" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3793,22 +3793,22 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-multisafepay@workspace:packages/magento-payment-multisafepay" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-checkout": ^7 - "@graphcommerce/magento-cart-payment-method": ^7 - "@graphcommerce/magento-cart-shipping-address": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-product-configurable": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-checkout": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-payment-method": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-shipping-address": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-product-configurable": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3823,16 +3823,16 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/magento-payment-paypal@workspace:packages/magento-payment-paypal" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-payment-method": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-payment-method": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3844,23 +3844,23 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-bundle@npm:7.1.0-canary.44, @graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle": +"@graphcommerce/magento-product-bundle@npm:7.1.0-canary.45, @graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-bundle@workspace:packages/magento-product-bundle" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-items": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-product-simple": ^7 - "@graphcommerce/magento-product-virtual": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-items": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-product-simple": ^7.1.0-canary.45 + "@graphcommerce/magento-product-virtual": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3871,26 +3871,26 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-configurable@npm:7.1.0-canary.44, @graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable": +"@graphcommerce/magento-product-configurable@npm:7.1.0-canary.45, @graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-configurable@workspace:packages/magento-product-configurable" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-items": ^7 - "@graphcommerce/magento-category": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-product-simple": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-items": ^7.1.0-canary.45 + "@graphcommerce/magento-category": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-product-simple": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3902,18 +3902,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-downloadable@npm:7.1.0-canary.44, @graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable": +"@graphcommerce/magento-product-downloadable@npm:7.1.0-canary.45, @graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-downloadable@workspace:packages/magento-product-downloadable" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3923,18 +3923,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-grouped@npm:7.1.0-canary.44, @graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped": +"@graphcommerce/magento-product-grouped@npm:7.1.0-canary.45, @graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-grouped@workspace:packages/magento-product-grouped" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-product-simple": ^7 - "@graphcommerce/magento-product-virtual": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-product-simple": ^7.1.0-canary.45 + "@graphcommerce/magento-product-virtual": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3944,18 +3944,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-simple@npm:7.1.0-canary.44, @graphcommerce/magento-product-simple@workspace:packages/magento-product-simple": +"@graphcommerce/magento-product-simple@npm:7.1.0-canary.45, @graphcommerce/magento-product-simple@workspace:packages/magento-product-simple": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-simple@workspace:packages/magento-product-simple" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-items": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-items": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3965,18 +3965,18 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product-virtual@npm:7.1.0-canary.44, @graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual": +"@graphcommerce/magento-product-virtual@npm:7.1.0-canary.45, @graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product-virtual@workspace:packages/magento-product-virtual" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-items": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-items": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -3986,25 +3986,25 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-product@npm:7.1.0-canary.44, @graphcommerce/magento-product@workspace:packages/magento-product": +"@graphcommerce/magento-product@npm:7.1.0-canary.45, @graphcommerce/magento-product@workspace:packages/magento-product": version: 0.0.0-use.local resolution: "@graphcommerce/magento-product@workspace:packages/magento-product" dependencies: schema-dts: "npm:^1.1.2" typescript: "npm:5.2.2" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-next-pages": ^7 - "@graphcommerce/framer-scroller": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-next-pages": ^7.1.0-canary.45 + "@graphcommerce/framer-scroller": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4016,20 +4016,20 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-recently-viewed-products@npm:7.1.0-canary.44, @graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products": +"@graphcommerce/magento-recently-viewed-products@npm:7.1.0-canary.45, @graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products": version: 0.0.0-use.local resolution: "@graphcommerce/magento-recently-viewed-products@workspace:packages/magento-recently-viewed-products" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-product-configurable": ^7 - "@graphcommerce/next-config": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-product-configurable": ^7.1.0-canary.45 + "@graphcommerce/next-config": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@mui/material": ^5.10.16 framer-motion: ^10.0.0 next: ^14 @@ -4038,24 +4038,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-review@npm:7.1.0-canary.44, @graphcommerce/magento-review@workspace:packages/magento-review": +"@graphcommerce/magento-review@npm:7.1.0-canary.45, @graphcommerce/magento-review@workspace:packages/magento-review": version: 0.0.0-use.local resolution: "@graphcommerce/magento-review@workspace:packages/magento-review" dependencies: schema-dts: "npm:^1.1.2" typescript: "npm:5.2.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4066,19 +4066,19 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-search@npm:7.1.0-canary.44, @graphcommerce/magento-search@workspace:packages/magento-search": +"@graphcommerce/magento-search@npm:7.1.0-canary.45, @graphcommerce/magento-search@workspace:packages/magento-search": version: 0.0.0-use.local resolution: "@graphcommerce/magento-search@workspace:packages/magento-search" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4089,17 +4089,17 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-store@npm:7.1.0-canary.44, @graphcommerce/magento-store@workspace:packages/magento-store": +"@graphcommerce/magento-store@npm:7.1.0-canary.45, @graphcommerce/magento-store@workspace:packages/magento-store": version: 0.0.0-use.local resolution: "@graphcommerce/magento-store@workspace:packages/magento-store" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4110,24 +4110,24 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/magento-wishlist@npm:7.1.0-canary.44, @graphcommerce/magento-wishlist@workspace:packages/magento-wishlist": +"@graphcommerce/magento-wishlist@npm:7.1.0-canary.45, @graphcommerce/magento-wishlist@workspace:packages/magento-wishlist": version: 0.0.0-use.local resolution: "@graphcommerce/magento-wishlist@workspace:packages/magento-wishlist" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-customer": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-product-configurable": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-config": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-customer": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-product-configurable": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-config": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4143,21 +4143,21 @@ __metadata: version: 0.0.0-use.local resolution: "@graphcommerce/mollie-magento-payment@workspace:packages/mollie-magento-payment" peerDependencies: - "@graphcommerce/ecommerce-ui": ^7 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/graphql": ^7 - "@graphcommerce/graphql-mesh": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/magento-cart": ^7 - "@graphcommerce/magento-cart-payment-method": ^7 - "@graphcommerce/magento-cart-shipping-address": ^7 - "@graphcommerce/magento-product": ^7 - "@graphcommerce/magento-product-configurable": ^7 - "@graphcommerce/magento-store": ^7 - "@graphcommerce/next-ui": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/react-hook-form": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/ecommerce-ui": ^7.1.0-canary.45 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/graphql": ^7.1.0-canary.45 + "@graphcommerce/graphql-mesh": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/magento-cart": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-payment-method": ^7.1.0-canary.45 + "@graphcommerce/magento-cart-shipping-address": ^7.1.0-canary.45 + "@graphcommerce/magento-product": ^7.1.0-canary.45 + "@graphcommerce/magento-product-configurable": ^7.1.0-canary.45 + "@graphcommerce/magento-store": ^7.1.0-canary.45 + "@graphcommerce/next-ui": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/react-hook-form": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4168,7 +4168,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/next-config@npm:7.1.0-canary.44, @graphcommerce/next-config@workspace:packagesDev/next-config": +"@graphcommerce/next-config@npm:7.1.0-canary.45, @graphcommerce/next-config@workspace:packagesDev/next-config": version: 0.0.0-use.local resolution: "@graphcommerce/next-config@workspace:packagesDev/next-config" dependencies: @@ -4193,7 +4193,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/next-ui@npm:7.1.0-canary.44, @graphcommerce/next-ui@workspace:packages/next-ui": +"@graphcommerce/next-ui@npm:7.1.0-canary.45, @graphcommerce/next-ui@workspace:packages/next-ui": version: 0.0.0-use.local resolution: "@graphcommerce/next-ui@workspace:packages/next-ui" dependencies: @@ -4208,13 +4208,13 @@ __metadata: schema-dts: "npm:^1.1.2" typescript: "npm:5.2.2" peerDependencies: - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/framer-next-pages": ^7 - "@graphcommerce/framer-scroller": ^7 - "@graphcommerce/framer-utils": ^7 - "@graphcommerce/image": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/framer-next-pages": ^7.1.0-canary.45 + "@graphcommerce/framer-scroller": ^7.1.0-canary.45 + "@graphcommerce/framer-utils": ^7.1.0-canary.45 + "@graphcommerce/image": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 "@lingui/core": ^4.2.1 "@lingui/macro": ^4.2.1 "@lingui/react": ^4.2.1 @@ -4227,7 +4227,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/prettier-config-pwa@npm:7.1.0-canary.44, @graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config": +"@graphcommerce/prettier-config-pwa@npm:7.1.0-canary.45, @graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config": version: 0.0.0-use.local resolution: "@graphcommerce/prettier-config-pwa@workspace:packagesDev/prettier-config" dependencies: @@ -4237,16 +4237,16 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/react-hook-form@npm:7.1.0-canary.44, @graphcommerce/react-hook-form@workspace:packages/react-hook-form": +"@graphcommerce/react-hook-form@npm:7.1.0-canary.45, @graphcommerce/react-hook-form@workspace:packages/react-hook-form": version: 0.0.0-use.local resolution: "@graphcommerce/react-hook-form@workspace:packages/react-hook-form" dependencies: "@testing-library/react": "npm:^14.1.0" peerDependencies: "@apollo/client": ^3 - "@graphcommerce/eslint-config-pwa": ^7 - "@graphcommerce/prettier-config-pwa": ^7 - "@graphcommerce/typescript-config-pwa": ^7 + "@graphcommerce/eslint-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/prettier-config-pwa": ^7.1.0-canary.45 + "@graphcommerce/typescript-config-pwa": ^7.1.0-canary.45 graphql: ^16.6.0 react: ^18.2.0 react-dom: ^18.2.0 @@ -4254,7 +4254,7 @@ __metadata: languageName: unknown linkType: soft -"@graphcommerce/typescript-config-pwa@npm:7.1.0-canary.44, @graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config": +"@graphcommerce/typescript-config-pwa@npm:7.1.0-canary.45, @graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config": version: 0.0.0-use.local resolution: "@graphcommerce/typescript-config-pwa@workspace:packagesDev/typescript-config" dependencies: From 1b8baf7122ffa9234789b0e090d1cceaa1206c39 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Thu, 23 Nov 2023 09:59:38 +0100 Subject: [PATCH 3/6] Added windows build to test if it is working (might move the workflow only to the canary branch) --- .github/workflows/windows.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/windows.yml diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 00000000000..b364ae86ba2 --- /dev/null +++ b/.github/workflows/windows.yml @@ -0,0 +1,18 @@ +name: windows-build +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review] +jobs: + windows-build: + runs-on: windows-2022 + if: github.event.pull_request.draft == false + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v3 + with: + cache: yarn + node-version: 18 + - run: yarn install && yarn postinstall + - run: yarn --cwd ./examples/magento-graphcms build > windows.txt + - run: cd examples/magento-graphcms && yarn build > ../../new.txt && cd ../.. + - run: cat new.txt From 26fcd6a6ba3cf8d432fae9f933cfe0fc47193ae1 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Thu, 23 Nov 2023 10:07:35 +0100 Subject: [PATCH 4/6] Try fix windows github action --- .github/workflows/windows.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b364ae86ba2..214818c0df7 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -13,6 +13,5 @@ jobs: cache: yarn node-version: 18 - run: yarn install && yarn postinstall - - run: yarn --cwd ./examples/magento-graphcms build > windows.txt - - run: cd examples/magento-graphcms && yarn build > ../../new.txt && cd ../.. - - run: cat new.txt + - run: yarn --cwd examples\magento-graphcms build > windows.txt + - run: cat windows.txt From 2d3bcf5e2ef8d721b4f0a123f1b50b3d5cc54a0b Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Thu, 23 Nov 2023 10:12:02 +0100 Subject: [PATCH 5/6] Do not log output of windows build --- .github/workflows/windows.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 214818c0df7..5157f9b91cb 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -13,5 +13,4 @@ jobs: cache: yarn node-version: 18 - run: yarn install && yarn postinstall - - run: yarn --cwd examples\magento-graphcms build > windows.txt - - run: cat windows.txt + - run: yarn --cwd examples\magento-graphcms build From 4b3b47de106f72e75ea7d08eabeb5584e99bffb5 Mon Sep 17 00:00:00 2001 From: Paul Hachmang Date: Thu, 23 Nov 2023 10:22:23 +0100 Subject: [PATCH 6/6] Try and fix windows build by handling paths better --- packages/cli/dist/bin/codegen.js | 2 +- packages/cli/dist/bin/mesh.js | 8 ++++---- packages/cli/src/bin/mesh.ts | 8 ++++---- packages/hygraph-cli/dist/migrations/index.js | 1 - packagesDev/next-config/dist/interceptors/findPlugins.js | 5 ++++- .../next-config/dist/interceptors/generateInterceptors.js | 4 +++- .../next-config/dist/interceptors/writeInterceptors.js | 2 +- 7 files changed, 17 insertions(+), 13 deletions(-) diff --git a/packages/cli/dist/bin/codegen.js b/packages/cli/dist/bin/codegen.js index 9ebe7d614f0..16ec787b3c2 100755 --- a/packages/cli/dist/bin/codegen.js +++ b/packages/cli/dist/bin/codegen.js @@ -62,7 +62,7 @@ async function main() { }); const isWatching = process.argv.includes('--watch') || process.argv.includes('-w'); if (!isWatching && extension) - await (0, rimraf_1.rimraf)(node_path_1.default.join(root, `**/*${extension}`)); + await (0, rimraf_1.rimraf)(node_path_1.default.join(root, `**/*${extension}`), { glob: true }); // - Prepend the all targets with ../../ if we're running in a monorepo setup. // - Append all the Graphcommerce packages to the configuration conf.config.generates = Object.fromEntries(generates.map(([generateTarget, generateConf]) => [ diff --git a/packages/cli/dist/bin/mesh.js b/packages/cli/dist/bin/mesh.js index c20dc5761d8..a58daae337f 100755 --- a/packages/cli/dist/bin/mesh.js +++ b/packages/cli/dist/bin/mesh.js @@ -26,7 +26,7 @@ function handleFatalError(e, logger = new utils_1.DefaultLogger('◈')) { exports.handleFatalError = handleFatalError; const root = process.cwd(); const meshDir = node_path_1.default.dirname(require.resolve('@graphcommerce/graphql-mesh')); -const relativePath = node_path_1.default.join(node_path_1.default.relative(meshDir, root), '/'); +const relativePath = node_path_1.default.join(node_path_1.default.relative(meshDir, root), node_path_1.default.sep); const cliParams = { ...cli_1.DEFAULT_CLI_PARAMS, playgroundTitle: 'GraphCommerce® Mesh', @@ -69,11 +69,11 @@ const main = async () => { return additionalTypeDef; }); // Scan the current working directory to also read all graphqls files. - conf.additionalTypeDefs.push('**/*.graphqls'); + conf.additionalTypeDefs.push(node_path_1.default.join('**', '*.graphqls')); const deps = (0, next_config_1.resolveDependenciesSync)(); const packages = [...deps.values()].filter((p) => p !== '.'); (0, next_config_1.packageRoots)(packages).forEach((r) => { - conf.additionalTypeDefs.push(`${r}/**/*.graphqls`); + conf.additionalTypeDefs.push(node_path_1.default.join(r, '**', '*.graphqls')); }); if (!conf.serve) conf.serve = {}; @@ -90,7 +90,7 @@ const main = async () => { const yamlString = (0, next_config_1.replaceConfigInString)(yaml_1.default.stringify(conf), (0, next_config_1.loadConfig)(root)); await node_fs_1.promises.writeFile(tmpMeshLocation, yamlString); // Reexport the mesh to is can be used by packages - await node_fs_1.promises.writeFile(`${meshDir}/.mesh.ts`, `export * from '${relativePath.split(node_path_1.default.sep).join('/')}.mesh'`, { encoding: 'utf8' }); + await node_fs_1.promises.writeFile(node_path_1.default.join(meshDir, '.mesh.ts'), `export * from '${relativePath.split(node_path_1.default.sep).join('/')}.mesh'`, { encoding: 'utf8' }); await (0, cli_1.graphqlMesh)({ ...cliParams, configName: tmpMesh }); await cleanup(); }; diff --git a/packages/cli/src/bin/mesh.ts b/packages/cli/src/bin/mesh.ts index af4d2faf670..f90c8e9ecef 100755 --- a/packages/cli/src/bin/mesh.ts +++ b/packages/cli/src/bin/mesh.ts @@ -28,7 +28,7 @@ export function handleFatalError(e: Error, logger: Logger = new DefaultLogger(' const root = process.cwd() const meshDir = path.dirname(require.resolve('@graphcommerce/graphql-mesh')) -const relativePath = path.join(path.relative(meshDir, root), '/') +const relativePath = path.join(path.relative(meshDir, root), path.sep) const cliParams: GraphQLMeshCLIParams = { ...DEFAULT_CLI_PARAMS, @@ -79,12 +79,12 @@ const main = async () => { }) // Scan the current working directory to also read all graphqls files. - conf.additionalTypeDefs.push('**/*.graphqls') + conf.additionalTypeDefs.push(path.join('**', '*.graphqls')) const deps = resolveDependenciesSync() const packages = [...deps.values()].filter((p) => p !== '.') packageRoots(packages).forEach((r) => { - conf.additionalTypeDefs.push(`${r}/**/*.graphqls`) + conf.additionalTypeDefs.push(path.join(r, '**', '*.graphqls')) }) if (!conf.serve) conf.serve = {} @@ -104,7 +104,7 @@ const main = async () => { // Reexport the mesh to is can be used by packages await fs.writeFile( - `${meshDir}/.mesh.ts`, + path.join(meshDir, '.mesh.ts'), `export * from '${relativePath.split(path.sep).join('/')}.mesh'`, { encoding: 'utf8' }, ) diff --git a/packages/hygraph-cli/dist/migrations/index.js b/packages/hygraph-cli/dist/migrations/index.js index 2ca36a87ca6..359a8699ab2 100644 --- a/packages/hygraph-cli/dist/migrations/index.js +++ b/packages/hygraph-cli/dist/migrations/index.js @@ -16,4 +16,3 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) { Object.defineProperty(exports, "__esModule", { value: true }); __exportStar(require("./graphcommerce5to6"), exports); __exportStar(require("./graphcommerce6to7"), exports); -__exportStar(require("./graphcommerce7to7.1"), exports); diff --git a/packagesDev/next-config/dist/interceptors/findPlugins.js b/packagesDev/next-config/dist/interceptors/findPlugins.js index 279360f7347..ed19bfb8556 100644 --- a/packagesDev/next-config/dist/interceptors/findPlugins.js +++ b/packagesDev/next-config/dist/interceptors/findPlugins.js @@ -48,7 +48,10 @@ function findPlugins(config, cwd = process.cwd()) { if (!result) return; const pluginConfig = { - plugin: file.replace(dependency, path).replace('.tsx', '').replace('.ts', ''), + plugin: file + .replace(dependency.replace(/\\/g, '/'), path) + .replace('.tsx', '') + .replace('.ts', ''), ...result, enabled: !result.ifConfig || Boolean((0, get_1.default)(config, result.ifConfig)), }; diff --git a/packagesDev/next-config/dist/interceptors/generateInterceptors.js b/packagesDev/next-config/dist/interceptors/generateInterceptors.js index 3b406aebd79..87ef6bff46c 100644 --- a/packagesDev/next-config/dist/interceptors/generateInterceptors.js +++ b/packagesDev/next-config/dist/interceptors/generateInterceptors.js @@ -159,7 +159,9 @@ function generateInterceptors(plugins, resolve, config) { let pluginPathFromResolved = plugin; if (plugin.startsWith('.')) { const resolvedPlugin = resolve(plugin); - pluginPathFromResolved = node_path_1.default.relative(resolved.fromRoot.split('/').slice(0, -1).join('/'), resolvedPlugin.fromRoot); + pluginPathFromResolved = node_path_1.default + .relative(resolved.fromRoot.split('/').slice(0, -1).join('/'), resolvedPlugin.fromRoot) + .replace(/\\/g, '/'); } if (!acc[resolved.fromRoot]) acc[resolved.fromRoot] = { diff --git a/packagesDev/next-config/dist/interceptors/writeInterceptors.js b/packagesDev/next-config/dist/interceptors/writeInterceptors.js index d626ff4a642..d5755a33e24 100644 --- a/packagesDev/next-config/dist/interceptors/writeInterceptors.js +++ b/packagesDev/next-config/dist/interceptors/writeInterceptors.js @@ -17,7 +17,7 @@ function writeInterceptors(interceptors, cwd = process.cwd()) { existing.push(...files); }); Object.entries(interceptors).forEach(([, plugin]) => { - const relativeFile = `${plugin.fromRoot}.interceptor.tsx`; + const relativeFile = `${plugin.fromRoot.replace(/\\/g, '/')}.interceptor.tsx`; if (existing.includes(relativeFile)) { delete existing[existing.indexOf(relativeFile)]; }