@graphcommerce/image 2.104.11 → 2.105.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.105.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/image@2.104.13...@graphcommerce/image@2.105.0) (2021-10-27)
7
+
8
+
9
+ ### Features
10
+
11
+ * **nextjs:** upgraded to nextjs 12 ([9331bc8](https://github.com/ho-nl/m2-pwa/commit/9331bc801f6419522115cc47d291d49d608d5a90))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.104.2](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/image@2.104.0...@graphcommerce/image@2.104.2) (2021-09-27)
7
18
 
8
19
 
package/config/config.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ImageConfig, imageConfigDefault } from 'next/dist/server/image-config'
1
+ import { ImageConfigComplete, imageConfigDefault } from 'next/dist/server/image-config'
2
2
  import { ImageLoaderProps } from 'next/image'
3
3
 
4
4
  export type DefaultImageLoaderProps = ImageLoaderProps & { root: string }
@@ -10,7 +10,7 @@ export const {
10
10
  path: configPath,
11
11
  domains: configDomains,
12
12
  // eslint-disable-next-line no-underscore-dangle
13
- } = (process.env.__NEXT_IMAGE_OPTS as any as ImageConfig) || imageConfigDefault
13
+ } = (process.env.__NEXT_IMAGE_OPTS as unknown as ImageConfigComplete) || imageConfigDefault
14
14
 
15
15
  function normalizeSrc(src: string): string {
16
16
  return src[0] === '/' ? src.slice(1) : src
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.103.0](https://github.com/ho-nl/m2-pwa/compare/@graphcommerce/image-example@2.102.35...@graphcommerce/image-example@2.103.0) (2021-10-27)
7
+
8
+
9
+ ### Features
10
+
11
+ * **nextjs:** upgraded to nextjs 12 ([9331bc8](https://github.com/ho-nl/m2-pwa/commit/9331bc801f6419522115cc47d291d49d608d5a90))
12
+
13
+
14
+
15
+
16
+
6
17
  # 2.102.0 (2021-09-27)
7
18
 
8
19
 
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@graphcommerce/image-example",
3
3
  "private": true,
4
- "version": "2.102.29",
4
+ "version": "2.103.2",
5
5
  "scripts": {
6
6
  "dev": "next",
7
7
  "build": "next build",
8
8
  "start": "next start"
9
9
  },
10
10
  "dependencies": {
11
- "@graphcommerce/image": "^2.104.11",
12
- "@graphcommerce/next-config": "^2.104.7",
13
- "@graphcommerce/next-ui": "^3.7.1",
11
+ "@graphcommerce/image": "^2.105.1",
12
+ "@graphcommerce/next-config": "^2.107.1",
13
+ "@graphcommerce/next-ui": "^3.10.2",
14
14
  "framer-motion": "^4.1.17",
15
- "next": "^11.1.2",
15
+ "next": "^12.0.1",
16
16
  "react": "^17.0.2",
17
17
  "react-dom": "^17.0.2",
18
18
  "react-focus-lock": "^2.5.2"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphcommerce/image",
3
- "version": "2.104.11",
3
+ "version": "2.105.1",
4
4
  "sideEffects": false,
5
5
  "scripts": {
6
6
  "dev": "tsc -W"
@@ -16,21 +16,21 @@
16
16
  }
17
17
  },
18
18
  "dependencies": {
19
- "@graphcommerce/framer-utils": "^2.103.9"
19
+ "@graphcommerce/framer-utils": "^2.103.12"
20
20
  },
21
21
  "devDependencies": {
22
22
  "@graphcommerce/browserslist-config-pwa": "^3.0.2",
23
- "@graphcommerce/eslint-config-pwa": "^3.0.8",
23
+ "@graphcommerce/eslint-config-pwa": "^3.1.2",
24
24
  "@graphcommerce/prettier-config-pwa": "^3.0.3",
25
25
  "@graphcommerce/typescript-config-pwa": "^3.1.1",
26
- "@playwright/test": "^1.15.2"
26
+ "@playwright/test": "^1.16.2"
27
27
  },
28
28
  "peerDependencies": {
29
29
  "clsx": "^1.1.1",
30
- "next": "^11.1.2",
30
+ "next": "^12.0.1",
31
31
  "react": "^17.0.2",
32
32
  "react-dom": "^17.0.2",
33
33
  "type-fest": "^1.0.1"
34
34
  },
35
- "gitHead": "99b31bb867bc0a28b1687fe2c7a67f67f0b1e8e3"
35
+ "gitHead": "7f5e13261ccb398f5a7e6bac70d3f4d5f757fa5f"
36
36
  }