@graphcommerce/framer-scroller 2.0.0 → 2.0.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +59 -0
  2. package/package.json +15 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,64 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`973ff8645`](https://github.com/ho-nl/m2-pwa/commit/973ff86452a70ade9f4db13fdda6e963d7220e96)
8
+ Thanks [@paales](https://github.com/paales)! - made packages public
9
+
10
+ - Updated dependencies
11
+ [[`973ff8645`](https://github.com/ho-nl/m2-pwa/commit/973ff86452a70ade9f4db13fdda6e963d7220e96),
12
+ [`81ea406d5`](https://github.com/ho-nl/m2-pwa/commit/81ea406d54d6b5c662c030a7fea444abc4117a20),
13
+ [`3a719c88c`](https://github.com/ho-nl/m2-pwa/commit/3a719c88cad1eab58602de28c41adc0fc4827e1d),
14
+ [`5ffcb56bf`](https://github.com/ho-nl/m2-pwa/commit/5ffcb56bfcbe49ebeaf24f9341e819a145ab9a14)]:
15
+ - @graphcommerce/framer-utils@3.0.3
16
+ - @graphcommerce/image@3.1.0
17
+ - @graphcommerce/next-ui@4.1.2
18
+
19
+ ## 2.0.2
20
+
21
+ ### Patch Changes
22
+
23
+ - [#1276](https://github.com/ho-nl/m2-pwa/pull/1276)
24
+ [`ce09388e0`](https://github.com/ho-nl/m2-pwa/commit/ce09388e0d7ef33aee660612340f6fbae15ceec2)
25
+ Thanks [@paales](https://github.com/paales)! - We've moved lots of internal packages from
26
+ `dependencies` to `peerDependencies`. The result of this is that there will be significantly less
27
+ duplicate packages in the node_modules folders.
28
+
29
+ * [#1276](https://github.com/ho-nl/m2-pwa/pull/1276)
30
+ [`52a45bba4`](https://github.com/ho-nl/m2-pwa/commit/52a45bba4dc6dd6df3c81f5023df7d23ed8a534d)
31
+ Thanks [@paales](https://github.com/paales)! - Upgraded to
32
+ [NextJS 12.1](https://nextjs.org/blog/next-12-1)! This is just for compatibility, but we'll be
33
+ implementing
34
+ [On-demand Incremental Static Regeneration](https://nextjs.org/blog/next-12-1#on-demand-incremental-static-regeneration-beta)
35
+ soon.
36
+
37
+ This will greatly reduce the requirement to rebuid stuff and we'll add a management UI on the
38
+ frontend to be able to revalidate pages manually.
39
+
40
+ * Updated dependencies
41
+ [[`381e4c86a`](https://github.com/ho-nl/m2-pwa/commit/381e4c86a8321ce96e1fa5c7d3c0a0c0ff3e02c7),
42
+ [`ce09388e0`](https://github.com/ho-nl/m2-pwa/commit/ce09388e0d7ef33aee660612340f6fbae15ceec2),
43
+ [`e7c8e2756`](https://github.com/ho-nl/m2-pwa/commit/e7c8e2756d637cbcd2e793d62ef5721d35d9fa7b),
44
+ [`52a45bba4`](https://github.com/ho-nl/m2-pwa/commit/52a45bba4dc6dd6df3c81f5023df7d23ed8a534d)]:
45
+ - @graphcommerce/next-ui@4.1.1
46
+ - @graphcommerce/framer-utils@3.0.2
47
+ - @graphcommerce/image@3.0.2
48
+
49
+ ## 2.0.1
50
+
51
+ ### Patch Changes
52
+
53
+ - [`0cbaa878b`](https://github.com/ho-nl/m2-pwa/commit/0cbaa878b8a844d5abbeb1797b625a33130e6514)
54
+ Thanks [@paales](https://github.com/paales)! - Added homepage and repository package.json files,
55
+ so that the packages link to back to the website and repository
56
+ - Updated dependencies
57
+ [[`0cbaa878b`](https://github.com/ho-nl/m2-pwa/commit/0cbaa878b8a844d5abbeb1797b625a33130e6514)]:
58
+ - @graphcommerce/framer-utils@3.0.1
59
+ - @graphcommerce/image@3.0.1
60
+ - @graphcommerce/next-ui@4.0.1
61
+
3
62
  ## 2.0.0
4
63
 
5
64
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "name": "@graphcommerce/framer-scroller",
3
- "version": "2.0.0",
3
+ "homepage": "https://www.graphcommerce.org/",
4
+ "repository": "github:graphcommerce-org/graphcommerce",
5
+ "version": "2.0.3",
4
6
  "sideEffects": false,
5
7
  "scripts": {
6
8
  "dev": "tsc -W"
@@ -13,22 +15,23 @@
13
15
  }
14
16
  },
15
17
  "dependencies": {
16
- "@graphcommerce/framer-utils": "^3.0.0",
17
- "@graphcommerce/image": "^3.0.0",
18
- "@graphcommerce/next-ui": "^4.0.0",
19
- "@mui/material": "^5.4.1",
20
- "popmotion": "11.0.3"
18
+ "@graphcommerce/framer-utils": "^3.0.3",
19
+ "@graphcommerce/image": "^3.1.0",
20
+ "@graphcommerce/next-ui": "^4.1.2"
21
21
  },
22
22
  "devDependencies": {
23
- "@graphcommerce/eslint-config-pwa": "^4.0.0",
24
- "@graphcommerce/prettier-config-pwa": "^4.0.0",
25
- "@graphcommerce/typescript-config-pwa": "^4.0.0",
26
- "@playwright/test": "^1.18.1"
23
+ "@graphcommerce/eslint-config-pwa": "^4.0.3",
24
+ "@graphcommerce/prettier-config-pwa": "^4.0.2",
25
+ "@graphcommerce/typescript-config-pwa": "^4.0.2",
26
+ "@playwright/test": "^1.19.1"
27
27
  },
28
28
  "peerDependencies": {
29
+ "@mui/material": "^5.4.1",
30
+ "@lingui/macro": "^3.13.2",
29
31
  "framer-motion": "^6.2.4",
32
+ "next": "^12.0.10",
33
+ "popmotion": "11.0.3",
30
34
  "react": "^17.0.2",
31
- "react-dom": "^17.0.2",
32
- "type-fest": "^2.11.2"
35
+ "react-dom": "^17.0.2"
33
36
  }
34
37
  }